/* Estilos básicos de formularios */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

label {
    font-weight: 600;
}

input, select, textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    outline: none;
}

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

.btn-primary {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}

.btn-secondary {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}

