.form-container {
    background-color: #fff;
    width: 100%;
    padding: 25px 0px;
    justify-content:center;
}

form {
    text-align: center;
    font-family: Open Sans, sans-serif;
    width:100%;
}

label {
    margin-top: 10px;
    display: block;
    font-family:Open Sans, sans-serif;
}

/* Estilo básico para todos los selectores */
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: none;
    border-bottom:1px solid #ACACACFF;
    border-radius: 4px;
    appearance: none; /* Oculta la flecha predeterminada */
    background-color: #fff;
    font-size: 14px;
    color:#ACACACFF;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23333' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

/* Estilo cuando el selector está enfocado */
select:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

/* Estilos para mejorar la consistencia en navegadores más antiguos */
select option {
    padding: 10px;
    font-size: 14px;
    font-family:Open Sans, sans-serif;
}


input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: none;
    border-bottom:1px solid #ACACACFF;
    border-radius: 4px;
    font-family:Open Sans, sans-serif;
    color:#101828;
}

input::placeholder{
    color:#ACACACFF;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #ff8001;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-family:Open Sans, sans-serif;
    font-weight: bold;
}

button:hover {
    background-color: #ffffff;
    color:#ff8001;
    border: 1px solid #ff8001;
    border-radius:4px;
}

.hidden {
    display: none;
}

#responseMessage {
    text-align: center;
    font-size: 14px;
    color: #28a745;
}
