.paso-desc {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Código inputs */
.codigo-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.codigo-digit {
    width: 48px;
    height: 56px;
    border: 2px solid #dce1e8;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #1e3a5f;
    background: #f8f9fb;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

.codigo-digit:focus {
    border-color: #2e6da4;
    box-shadow: 0 0 0 3px rgba(46, 109, 164, 0.15);
    background: #fff;
}

/* Reenviar */
.reenviar {
    text-align: center;
    margin-top: 16px;
}

.link-btn {
    background: none;
    border: none;
    color: #2e6da4;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.link-btn:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

.link-btn:disabled {
    color: #adb5bd;
    cursor: not-allowed;
    text-decoration: none;
}

/* Éxito */
.exito-icon {
    text-align: center;
    margin-bottom: 16px;
}

.exito-icon i {
    font-size: 56px;
    color: #28a745;
}

.exito-text {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 24px;
}

/* Volver */
.link-volver {
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: color 0.2s;
}

.link-volver:hover {
    color: #2e6da4;
}

/* Responsive */
@media (max-width: 480px) {
    .codigo-digit {
        width: 42px;
        height: 50px;
        font-size: 20px;
    }

    .codigo-inputs {
        gap: 6px;
    }
}
