/* GovernIQ - Signup Page Styles */

.name-row {
    display: flex;
    gap: 12px;
}

.name-row .input-group {
    flex: 1;
}

/* Password Strength Indicator */
.password-strength {
    height: 4px;
    border-radius: 4px;
    background: var(--border);
    margin-top: -8px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.password-strength .bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
    width: 0%;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 1.75rem 0;
    gap: 12px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider span {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 1.75rem;
}

.login-link p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.login-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.login-link a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .name-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ========== Mobile Responsive ========== */
@media (max-width: 850px) {
    .name-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .name-row {
        flex-direction: column;
        gap: 0;
    }
    .password-strength {
        margin-bottom: 12px;
    }
    .login-link p {
        font-size: 0.85rem;
    }
}
