* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh; /* Garantiza que el body use el 100% de la pantalla */
    overflow: hidden; /* Prevenir el desplazamiento */
}

.header {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #dadada;
}

.logo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1; /* Esto asegura que ocupe el espacio restante */
    height: 100%; /* Ajustar para que ocupe toda la altura disponible */
    overflow: hidden; /* Prevenir desbordamiento */
}

.form-section {
    flex: 1;
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    text-align: center;
}

.titulo {
    padding-bottom: 25px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input,
.input-group select {
    width: 45%;
    padding: 16px;
    font-size: 14px;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    background-color: #fffcc8;
    font-family: inherit;
    font-size: 16px;
}

button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
    width: 45%;
    font-size: 16px;
    margin-top: 10px;
    height: 50px;
    font-weight: bold;
}

button:hover {
    background-color: #333;
}

.image-section {
    flex: 1;
    max-width: 50%;
    height: 100%;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background-color: #191919;
    color: white;
    padding: 40px;
    text-align: center;
    flex-shrink: 0;
}

.support {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.support p {
    margin: 0;
    margin-right: 10px;
}

.support select {
    padding: 5px;
}
