body {
    font-family: "Montserrat", sans-serif;
    background-color: #f4f4f4;
    box-sizing: border-box;
}
.content-logo{
    display: flex;
    width: 100%;
    height: 200px;
    align-items: center;
    justify-content: center;
}

.content-logo img{
    height: 100px;
}
form {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
}

input,
select {
    display: flex;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input,
text {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ff6600;
    /* Color naranja */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #e65c00;
    /* Color naranja más oscuro */
}

#additional-questions {
    display: none;
}