/* Cores do sistema */
:root {
    --laranja: #ff7900;
    --azul-escuro: #00204e;
    --cinza-claro: #f5f5f5;
    --borda: #dcdcdc;
}

/* Estrutura geral */
.container-tight {
    max-width: 448px;
}

/* Estilização do card */
.login-card {
    border: 1px solid var(--borda);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    background: white;
}

/* Estilização dos inputs */
.login-input,
.pin-input {
    border: 2px solid var(--borda);
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    width: 100%;
}

.pin-input {
    text-align: center;
    letter-spacing: 5px;
    font-weight: bold;
}

/* Botão de exibição do PIN */
.toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 10px;
}

/* Botão de login */
.btn-login {
    background-color: var(--laranja);
    border: none;
    font-size: 18px;
    padding: 12px;
    border-radius: 8px;
    color: white;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #d96a00;
    color: white;
}

/* Links de recuperação e suporte */
.link-recuperacao,
.link-suporte {
    color: var(--azul-escuro);
    font-weight: 500;
    text-decoration: none;
}

.link-recuperacao:hover,
.link-suporte:hover {
    text-decoration: underline;
}

.suporte-text {
    color: var(--azul-escuro);
    font-weight: bold;
}

/* 
** Redefinir pin
*/

/* Estilização do card */
.reset-card {
    border: 1px solid var(--borda);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: white;
}

.reset-title {
    color: var(--azul-escuro);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Inputs e Botão */
.reset-input {
    border: 2px solid var(--borda);
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    width: 100%;
}

.btn-reset {
    background-color: var(--laranja);
    border: none;
    font-size: 18px;
    padding: 12px;
    border-radius: 8px;
    color: white;
    transition: 0.3s;
}

.btn-reset:hover {
    background-color: #d96a00;
    color: #ffffff;
}

/* Links */
.link-voltar {
    color: var(--azul-escuro);
    font-weight: 500;
    text-decoration: none;
}

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