/* ═══════════════════════════════════════════════════════════════
   ESTILOS PARA FORMULARIO DE INSCRIPCIÓN
   ═══════════════════════════════════════════════════════════════ */

.personal-data-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #909090;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 14px 18px;
    background: #0f1419;
    border: 1px solid #2a3440;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #b47b18;
    background: #151c22;
    box-shadow: 0 0 0 3px rgba(180, 123, 24, 0.1);
}

.form-group input::placeholder {
    color: #606060;
}

.form-group input:required {
    border-left: 3px solid rgba(180, 123, 24, 0.5);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-complete-inscription:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
