* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h2{
    margin-bottom: 2vh;
}

.container-cadastro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card-cadastro {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.card-cadastro input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.card-cadastro button {
    width: 60%;
    display: block;
    margin: 10px auto 0;
    height: 6vh;
    border-radius: 4px;
    border: none;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
}

.card-cadastro button:hover{
    background: #334155;
}

.btn-voltar{
    transition: background 0.2s;
}

.btn-voltar:hover{
    opacity: 0.8;
}

.btn-sucesso { 
    background-color: #28a745 !important; 
}

.btn-sucesso:hover{
    opacity: 0.9;
}

.msg-error { 
    color: #d9534f; 
    font-weight: bold;
    text-align: center;
    margin: 2vh 0;
}

.btn-voltar { 
    display: block; 
    text-align: center; 
    margin-top: 15px; 
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-voltar:hover{
    text-decoration: underline;
}

.conferencia-dados {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    text-align: left;
}

.conferencia-dados ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.conferencia-dados li {
    /* font-size: 0.9rem;
    color: #444; */
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 4px;
}

.conferencia-dados li:last-child {
    border-bottom: none;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.btn-cancelar {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #d9534f;
    text-decoration: none;
}

.btn-voltar-tentar {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #6c757d;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-voltar-tentar:hover {
    background-color: #5a6268;
}

.input-token {
    text-align: center;
    letter-spacing: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #1a2a40 !important;
}

.alerta-juridico{
    background-color: #f8d7da; 
    border-left-color: #dc3545;
    text-align: center;
    margin-bottom: 2vh;
    padding: 1.5vh 0;
}

.alerta-juridico p {
    color: #721c24;
}

.input-tkn{
    font-weight: bold; 
    text-align: center; 
    background-color: gray;
    width: 60%;
}

.token-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 3vh 0;
}

.token-label {
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.input-tkn-styled{
    background-color: #d1d1d1 !important;
    width: 120px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid #94a3b8;
    text-transform: uppercase;
}