/* =============================================
   SNAPLINKED AUTH SHARED STYLES v1.1
   Estilos compartilhados entre login, register,
   forgot_password e reset_password.
   ============================================= */

.auth-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.auth-logo i {
    font-size: 2rem;
    color: var(--primary);
}

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

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

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