/* ========== ESTILOS PARA TOKEN (MODIFICACIONES) ========== */
.container.token-container {
    /* Mantiene todos los estilos del container original */
    height: auto; /* Ajusta altura automática */
    min-height: 380px; /* Altura mínima igual al login */
}

.form-box.token-form {
    /* Mantiene posición y dimensiones base */
    border-radius: 15px;
   padding-left: 50px;
    padding-top: 10px;
}

.token-form h1 {
    font-size: 35px;
    color: #055b08;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin: 0 0 30px 0; /* Ajuste de márgenes */
    padding-left: 40px;
    padding-bottom: 20px;
}
.token-form h4 {
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin-left: -100px;
}

.btn-token{
    padding-top: 10px;
}

.token-input-container {
    position: relative;
    width: 80%;
    margin: 0 auto 30px;
}

.token-input-fields {
    display: flex;
    
    gap: 10px;
    padding-top: 50px;
}

.token-input-field {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background-color: rgba(199, 199, 199, 0.7);
    color: #000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.token-input-field:focus {
    border: 2px solid #00ff0070;
    background: #ffffff2c;
    transform: scale(1.05);
    outline: none;
}

.token-separator {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 5px;
}

.token-actions {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-right: 80px;
}

.token-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 12px 40px;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.token-btn:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.token-error {
    color: #ff3860;
    text-align: center;
    margin: 15px 0;
    font-size: 15px;
}

