/* AUTH PAGES STYLES */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.auth-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    max-width: 500px;
    margin: auto;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-link {
    font-size: 0.875rem;
    color: var(--primary-500);
    font-weight: 500;
}

.form-link:hover {
    text-decoration: underline;
}

.form-link-primary {
    color: var(--primary-500);
    font-weight: 600;
}

.password-strength {
    margin-top: 0.5rem;
    display: none;
}

.password-strength.active {
    display: block;
}

.strength-bar {
    height: 4px;
    background: var(--neutral-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
}

.strength-fill.weak { width: 33%; background: var(--accent-red); }
.strength-fill.medium { width: 66%; background: var(--accent-orange); }
.strength-fill.strong { width: 100%; background: var(--accent-green); }

.strength-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    position: relative;
    background: var(--bg-primary);
    padding: 0 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-footer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.auth-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    padding: 3rem;
    color: white;
}

.info-content {
    max-width: 400px;
}

.info-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.info-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    .auth-info {
        display: none;
    }
}
