/* Login page styles */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
}

body.login-page {
    background: linear-gradient(135deg, #e9eafc 0%, #f7f9fb 100%);
    min-height: 100vh;
}

/* Two-column layout */
.login-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Left column: value props */
.login-value {
    padding: 1rem 0;
}

.login-value__heading {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-value__sub {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.login-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.login-benefits__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-top: 1px;
}

.login-benefits__icon--blue {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.login-benefits__icon--green {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.login-benefits__icon--purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.login-benefits__icon--orange {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.login-benefits__text strong {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.1rem;
}

.login-benefits__text span {
    font-size: 0.88rem;
    color: #6b7280;
}

/* Trust strip */
.login-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.login-trust__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #6b7280;
    font-weight: 500;
}

.login-trust__item i {
    color: #059669;
    font-size: 0.85rem;
}

/* Right column: login card */
.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    justify-self: center;
}

.login-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-card > p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    text-align: center;
}

/* Trial badge */
.login-trial-badge {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: #059669;
    font-weight: 600;
}

.login-trial-badge i {
    margin-right: 0.35rem;
}

/* Social login buttons */
.google-login-btn {
    background: #4285f4;
    border: 1px solid #4285f4;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
}

.google-login-btn:hover {
    background: #3367d6;
    border-color: #3367d6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.google-login-btn img {
    width: 20px;
    height: 20px;
}

.facebook-login-btn {
    background: #1877f2;
    border: 1px solid #1877f2;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.facebook-login-btn:hover {
    background: #166fe5;
    border-color: #166fe5;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0;
    color: #9ca3af;
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    padding: 0 0.85rem;
}

/* Terms and mode switch */
.login-info {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.login-info p {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.login-info a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.login-info a:hover {
    text-decoration: underline;
}

.login-mode-switch {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.login-mode-switch p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.login-mode-switch a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}

.login-mode-switch a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .login-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .login-value {
        text-align: center;
    }

    .login-value__heading {
        font-size: 1.7rem;
    }

    .login-benefits li {
        text-align: left;
    }

    .login-trust {
        justify-content: center;
    }

    .login-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}
