body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "width" 100;

    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #D6D1CA;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 400px; /* Ajusta el ancho según sea necesario */
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color:#124734;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    text-align: center;
    font-size:1.5em;
}

p{
    display: block;
    margin-bottom: 5px;
    text-align: justify;
    font-size:1em;
}

select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    margin: 5px 0px;
}

button {
    background-color: #124734;
    color: #fff;
    padding: 20px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin: 5px 0px; 
    font-size: 1.2em;
    font-weight: bold;   
}

button:hover {
    background-color: #124734;
    opacity: 50%;
}