/* =========================================================================
   ESTILOS GLOBALES Y CONTENEDOR CENTRAL
   ========================================================================= */
body { 
    background: #070e1a; 
    color: #fff; 
    font-family: 'Segoe UI', sans-serif; 
    display: flex; 
    justify-content: center; 
    padding: 40px; 
}

.container { 
    background: #0a1428; 
    padding: 30px; 
    border-radius: 12px; 
    border: 1px solid #d4af37; 
    width: 500px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}

h2 { 
    color: #d4af37; 
    text-align: center; 
    margin-top: 0; 
}

/* =========================================================================
   ELEMENTOS DE FORMULARIO (CAMPOS DE TEXTO Y LABELS)
   ========================================================================= */
label { 
    display: block; 
    margin: 10px 0 5px; 
    color: #a8b2d1; 
    font-size: 0.9rem; 
    font-weight: bold; 
}

input { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 15px; 
    background: #112240; 
    border: 1px solid #1d2d50; 
    color: #fff; 
    border-radius: 5px; 
    box-sizing: border-box; 
}

/* =========================================================================
   BOTONES Y CAJA DE RESULTADOS (TOKEN)
   ========================================================================= */
.btn { 
    width: 100%; 
    padding: 15px; 
    background: #00509e; 
    border: none; 
    color: #fff; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 5px; 
    margin-top: 10px; 
    text-transform: uppercase; 
    font-size: 1rem; 
    transition: 0.3s; 
}

.btn:hover { 
    background: #004080; 
}

.token-res { 
    background: #050a15; 
    border: 2px dashed #d4af37; 
    padding: 20px; 
    margin-top: 25px; 
    border-radius: 8px; 
    word-break: break-all; 
    font-family: monospace; 
    text-align: center; 
}

.card-btn { 
    background: #2ecc71; 
    color: #fff; 
    text-decoration: none; 
    display: block; 
    text-align: center; 
    padding: 12px; 
    border-radius: 5px; 
    margin-top: 15px; 
    font-weight: bold; 
    border: none; 
    width: 100%; 
    cursor: pointer; 
    font-size: 1rem; 
    text-transform: uppercase;
}