﻿/**
 * login-cartao.css
 * Estilos da tela de login do usuário cartão (Meu Prime)
 */

/* ─── Toggle de modo (link Acessar com Placa / Acessar com Cartão) ───────── */
.login-modo-toggle {
    text-align: center;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8;
}

.login-modo-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

    .login-modo-link:hover,
    .login-modo-link:focus {
        color: #333;
        text-decoration: underline;
    }

    .login-modo-link .fa {
        font-size: 14px;
    }

/* ─── Linha de ações (botão Acessar + link Cadastrar senha) ──────────────── */
.login-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

/* ─── Animação de entrada ao trocar de modo ──────────────────────────────── */
@keyframes modo-entrada-anim {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modo-entrada {
    animation: modo-entrada-anim 0.35s ease;
}

.important-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(243, 97, 51, 0.12);
    border: 1px solid rgb(243, 97, 51);
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    color: rgb(243, 97, 51);
    text-decoration: none !important;
    margin-bottom: 1.25rem;
    width: 100%;
    justify-content: center;
    transition: background 0.2s;
    font-weight: bold;
    font-size: larger;
}

.important-info-badge:hover {
    background: rgba(243, 97, 51, 0.22);
    color: rgb(255, 61, 0);
}
