/* =============================================================================
   ESTILOS ESPECÍFICOS DA PÁGINA DE LOGIN (PLAYFUL LIGHT MODE)
   Caminho: front/pages/login/css/login.css
   ============================================================================= */

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: var(--margin-default) 0;
}

.login-card {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-card);
    padding: 3rem 2.5rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}



.login-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.login-tabs {
    display: flex;
    gap: 0.5rem;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-input);
    padding: 0.3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tab-btn {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: calc(var(--radius-input) - 4px);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: var(--text-white);
}

.auth-form {
    position: relative;
    z-index: 1;
}
