/* === Formularios y Entradas de Datos === */
.form-container {
    width: 50%;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 10px;
}

.form-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

.form-input {
    width: 100%;
    display: flex;
}

/* Estilos de los inputs y selects */
.form-input input,
.form-input textarea,
.form-input select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    box-sizing: border-box;
}

/* Fondo gris para los select */
.form-input select {
    background-color: #f0f0f0;
    color: #333;
}

