.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 2rem;
}

.login-container {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.login-brand {
    flex: 1;
    background: linear-gradient(135deg, #5d5fef 0%, #a259ff 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.brand-logo-link {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-img {
    width: 50px;
}

.brand-title {
    margin-top: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.brand-subtitle {
    margin-top: 1rem;
    color: white;
    font-size: 1.1rem;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    color: #ffce00;
}

.login-form-wrapper {
    flex: 1;
    padding: 3rem;
}

.back-link-wrapper {
    text-align: right;
    margin-bottom: 2rem;
}

.back-link {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
}

.login-header {
    margin-bottom: 2rem;
}

.login-title {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #64748b;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #94a3b8;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider-text {
    padding: 0 1rem;
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #334155;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.otp-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    letter-spacing: 2px;
    font-weight: 600;
}

.otp-help {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.message-box {
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.submit-btn {
    width: 100%;
    background: #0f172a;
    color: white;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.terms-text {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
}

.terms-link {
    color: #5d5fef;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-brand {
        display: none !important;
    }

    .login-form-wrapper {
        padding: 2rem !important;
    }
}