.container-formulario {
    padding: 20px;
    width: 100%;
    max-width: 400px;
	margin: 0 auto;
}

	.formulario-contacto .container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.formulario-contacto h2 {
    text-align: center;
    color: #333;
}

.formulario-contacto .checkbox-group label {
    display: flex;
    
    justify-content: center; 
    align-items: center;    
    align-content: center;

    display: flex;
    gap: 5px; /* Espacio entre el texto y el checkbox */
}

.formulario-contacto input:not([type="checkbox"]), .formulario-contacto textarea {
    width: 100%;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
}

.formulario-contacto textarea {
    height: 100px;
}

.formulario-contacto .checkbox-group {
    margin-top: 10px;
}

.formulario-contacto button {
    width: 100%;
    background-color: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer;
}

.formulario-contacto button:hover {
    background-color: #0056b3;
}

/* Estilos para la ventana modal */
.modal-form {
    display: none;
    position: fixed;
    inset: 0; /* Equivalente a top: 0; left: 0; width: 100%; height: 100%; */
    background: rgba(0, 0, 0, 0.5); /* Fondo negro semi-transparente */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Contenedor de la ventana modal */
.modal-form .modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    height: 50vh; /* 50% de la altura del viewport */
    max-width: 400px; /* Evita que la modal sea demasiado ancha */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Botón de cerrar */
.modal-form .modal-content button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #149dcc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.modal-form .modal-content button:hover {
    background: #117a8b;
}
