/* Login, register, OTP verification */

.auth-section {
    width: 100%;
    max-width: 1100px;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.auth-card .left-panel {
    background: linear-gradient(135deg, #1e84b5, #0d5d82);
    color: #fff;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}

.auth-card .welcome-logo {
    width: 120px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 16%;
}

.auth-card .form-side {
    padding: 50px 40px;
}

.auth-card .nav-pills .nav-link {
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    color: #1e84b5;
    border: 1px solid #1e84b5;
    margin-right: 10px;
}

.auth-card .nav-pills .nav-link.active {
    background: #1e84b5;
    color: #fff;
}

.auth-card .form-control {
    height: 55px;
    border-radius: 12px;
    padding-left: 45px;
}

.auth-card .input-box {
    position: relative;
}

.auth-card .input-box i {
    position: absolute;
    left: 16px;
    top: 18px;
    color: #888;
}

.auth-card .select-box .form-select {
    height: 55px;
    border-radius: 12px;
    padding-left: 45px;
    color: #212529;
}

.auth-card .select-box .form-select:invalid {
    color: #6c757d;
}

.auth-card .btn-main {
    background: #1e84b5;
    color: #fff;
    height: 55px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
}

.auth-card .btn-main:hover {
    background: #0d5d82;
    color: #fff;
}

.auth-card .form-title {
    font-size: 32px;
    font-weight: 700;
}

.auth-card .small-text {
    margin-bottom: 16px;
    color: #666;
}

.auth-card .auth-register-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 24px;
    padding: 12px 14px;
    border: 1px solid #dc2626;
    border-radius: 10px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.auth-card .auth-register-notice span {
    color: #dc2626;
}

.auth-card .auth-register-notice i {
    margin-top: 2px;
    flex-shrink: 0;
    color: #dc2626;
}

/* OTP verification */

.otp-section {
    width: 100%;
    max-width: 750px;
}

.otp-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.otp-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.otp-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.otp-message {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #111827;
}

.otp-card .form-label {
    font-size: 16px;
    font-weight: 600;
}

.otp-card .form-control {
    height: 55px;
    border-radius: 12px;
}

.otp-card .verify-btn {
    background: #1da35d;
    color: #fff;
    border: none;
    padding: 12px 34px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

.otp-card .verify-btn:hover {
    background: #168a4d;
    color: #fff;
}

.otp-card .resend-link {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    background: none;
    padding: 0;
}

.otp-card .back-link {
    color: #1e84b5;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 991px) {
    .auth-card .left-panel {
        border-radius: 20px 20px 0 0;
        padding: 40px 24px;
    }

    .auth-card .form-side {
        padding: 32px 24px;
    }
}
