.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-6 {
    flex: 0 0 48%;
    max-width: 48%;
    padding: 5px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* ✅ جعل الحقل داخل الصندوق بشكل متناسق */
.otp-verification-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ✅ تنسيق حقل إدخال OTP */
/* ✅ تحسين تنسيق إدخال OTP بدون Label */
.otp-verification-container input[type="text"] {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #f9f9f9;
}

/* ✅ تحسين تنسيق زر التحقق */
.otp-verification-container input[type="submit"] {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background-color: #0073e6;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.otp-verification-container input[type="submit"]:hover {
    background-color: #005bb5;
}


/* ✅ تحسين تنسيق رسالة Required */
.otp-verification-container .form-error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

/* ✅ تحسين تنسيق رابط إعادة إرسال OTP */
.otp-resend-link {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.otp-resend-link:hover {
    text-decoration: underline;
}

/* ✅ ضبط محاذاة الصفحة بالكامل */
.otp-verification-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f9f9f9;
}

/* ✅ صندوق التحقق */
.otp-verification-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* ✅ تنسيق عنوان OTP */
.otp-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* ✅ تنسيق رسالة إرسال OTP */
.otp-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* ✅ تنسيق حقل إدخال OTP */
.otp-input {
    width: 100%;
    /*padding: 12px;*/
    font-size: 18px;
    text-align: center;
    /*border: 2px solid #ddd;*/
    border-radius: 5px;
    margin-bottom: 15px;
}

/* ✅ تنسيق زر التحقق */
.otp-button {
    width: 100%;
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.otp-button:hover {
    background: #0056b3;
}

/* ✅ زر إعادة إرسال OTP */
.otp-resend {
    margin-top: 15px;
    font-size: 14px;
}

.otp-resend a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.otp-resend a:hover {
    text-decoration: underline;
}

/* ✅ تحسين رسالة نجاح التحقق */
.otp-success-box {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #c3e6cb;
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
}

.otp-success-title {
    font-size: 20px;
    font-weight: bold;
}

.otp-success-text {
    font-size: 16px;
    margin-top: 10px;
}

.otp-login-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
}

.otp-login-button:hover {
    background: #218838;
}
