/* ── Form Infinity — Estilos ── */

.finf-wrapper {
    max-width: 580px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
}

#form-infinity {
    background: #ffffff;
    border: 1px solid #e0e0e8;
    border-radius: 8px;
    padding: 40px 44px;
    box-shadow: 0 4px 24px rgba(26, 26, 46, .07);
}

/* Filas de dos columnas */
.finf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Campo individual */
.finf-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.finf-field label {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555566;
    margin-bottom: 7px;
    font-family: Arial, sans-serif;
}

.finf-req {
    color: #c0392b;
}

.finf-field input {
    border: 1px solid #d0d0de;
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #1a1a2e;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    background: #fafafa;
}

.finf-field input:focus {
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, .08);
    background: #fff;
}

.finf-field input::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 13px;
}

/* Mensajes */
.finf-msg {
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.finf-msg--error {
    background: #fdf0ef;
    border: 1px solid #e8b4b0;
    color: #922;
}

.finf-msg--success {
    background: #eef7f0;
    border: 1px solid #a8d5b4;
    color: #2a6b3a;
}

/* Botón */
#finf-submit {
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px 24px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background .2s, transform .1s;
    margin-top: 6px;
}

#finf-submit:hover {
    background: #2e2e50;
}

#finf-submit:active {
    transform: scale(.99);
}

#finf-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 520px) {
    #form-infinity {
        padding: 28px 20px;
    }
    .finf-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
