body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Estilos del video de fondo */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Contenedor principal */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
}

/* Contenedor del contenido */
.content-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    align-items: flex-start; /* Alinea al principio */
    gap: 30px; /* Espacio entre cajas */
    padding: 20px; /* Espacio alrededor del contenido */
}

/* Estilos de la información */
.info-box {
    background-color: rgba(255, 255, 255, 0.8); /* Semitransparencia */
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    margin-right: 20px;
    overflow: visible; /* Asegura que no haya scrollbar */
    box-sizing: border-box;
}

.info-box h3 {
    color: #007BFF;
    margin-bottom: 20px;
}

.info-box p, .info-box ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-box h4 {
    color: #0056b3;
}

.info-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

/* Añadir margen específico al último li dentro del último ul en info-box */
.info-box ul:last-of-type li:last-of-type {
    margin-bottom: 30px; /* Ajuste del margen inferior para el último elemento */
}

/* Estilos del formulario */
.form-box {
    padding: 30px;
    width: 50%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.5); /* Mismo nivel de transparencia */
    margin-top: 20px; /* Espacio superior */
}

.form-box img {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px;
    height: auto;
}

.form-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007BFF;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"],
.form-box input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.form-box input[type="submit"] {
    width: 100%;
    padding: 12px 15px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 18px;
cursor: pointer;
}

.form-box input[type="submit"]
{
background-color: #0056b3;
}

/* Estilos responsivos para dispositivos m�viles */
@media (max-width: 768px) {
.content-wrapper {
flex-direction: column;
}

.info-box, .form-box {
    width: 100%;
}

.info-box {
    margin-top: 0;
}

.form-box {
    margin-top: 20px;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    text-align: center;
    opacity: 0.8;
}

/* Esto solo se aplicará a párrafos con la clase "note" */
p.note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    text-align: center;
    opacity: 0.8;
}