body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 40px;
    color: #2f3640;
}

h1 {
    font-size: 28px;
    text-align: center;
    color: #273c75;
    margin-bottom: 50px;
}

form {
    background: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    margin-top: 18px;
}

/* Inputs y selects */
input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdde1;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    background-color: #f9f9f9;
}


input:focus,
select:focus {
    border-color: #40739e;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 4px rgba(64, 115, 158, 0.4);
}


/* Botón */
button {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background-color: #273c75;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}


button:hover {
    background-color: #192a56;
}


/* Ajustes específicos para Select2 */
.select2-container--default .select2-selection--single {
    height: 42px !important;
    border-radius: 8px !important;
    border: 1px solid #dcdde1 !important;
    background-color: #f9f9f9;
}

/* Texto seleccionado */
.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    line-height: 42px !important;   /* CLAVE */
    padding-left: 12px !important;
    padding-right: 40px !important;
    color: #333;
}

/* Flecha */
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    height: 42px !important;
}

/* Focus */
.select2-container--default
.select2-selection--single:focus,
.select2-container--default.select2-container--open
.select2-selection--single {
    border-color: #40739e !important;
    box-shadow: 0 0 4px rgba(64, 115, 158, 0.4);
    background-color: #ffffff !important;
}