/* Auth Pages Styles (Login & Register) */

/* Hide header/navbar on login page */
/* .login-page .header_section,
.login-page .sticky,
.login-page footer {
    display: none !important;
} */

.login-image-side {
    width: 100%;
}

/* All anchor tags use secondary color */
.login-page-wrapper a,
.login-form-side a,
.login-subtitle a,
.login-links a,
.register_card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.login-page-wrapper a:hover,
.login-form-side a:hover,
.login-subtitle a:hover,
.login-links a:hover,
.register_card a:hover {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* ============================
   Register Page Styles
   ============================ */

/* .auth-page .user_dropdown > ul > li > a {
    font-size: 12px;
}

.auth-page .user_dropdown > ul > li > a img {
    width: 20px;
}

.auth-page main {
    margin-top: 0 !important;
}

.auth-page .header_bottom {
    background-color: transparent !important;
}

.auth-page .header_top {
    background-color: transparent !important;
    box-shadow: unset !important;
}

.auth-page .page_title {
    margin-top: 70px;
    font-size: 38px;
}

.auth-page .page_title_area {
    min-height: 35vh;
    padding: 0;
} */

/* OTP Modal Styles */
.otp-modal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.otp-modal .modal-header {
    background: var(--primary-color);
    border: none;
    padding: 24px 30px;
}

.otp-modal .modal-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
}

.otp-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.otp-modal .btn-close:hover {
    opacity: 1;
}

.otp-modal .modal-body {
    padding: 40px 30px;
    text-align: center;
}

.otp-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.otp-icon i {
    font-size: 32px;
    color: #fff;
}

.otp-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.otp-phone-display {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.otp-inputs input {
    width: 60px;
    height: 65px;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.otp-inputs input:focus {
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(234, 0, 30, 0.1);
}

.otp-inputs input.filled {
    border-color: var(--primary-color);
    background: #fff;
}

.otp-inputs input.error {
    border-color: #ef4444;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.otp-timer {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.otp-timer span {
    color: var(--secondary-color);
    font-weight: 600;
}

.resend-otp {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.resend-otp:hover {
    opacity: 0.8;
}

.resend-otp.disabled {
    color: #9ca3af;
    pointer-events: none;
}

.otp-modal .modal-footer {
    border: none;
    padding: 0 30px 30px;
    justify-content: center;
}

.otp-verify-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.otp-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 12, 33, 0.3);
}

.otp-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.otp-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.otp-loading.show {
    display: flex;
}

.otp-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.register_section {
padding: 50px 0 !important;
}
.header_contact_info li{
    color: #fff !important;
}