@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

/* Contenedor del video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    transition: opacity 1s ease-out;
}

video {
    width: 80%;
    max-width: 400px;
}

/* Ocultar el formulario al inicio */
.hidden {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Mostrar el formulario después del fade-out */
.show {
    opacity: 1;
    transform: scale(1);
}

/* Contenedor del formulario */
.container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

/* Estilos generales */
h1 {
    font-size: 32px;
}

.bold {
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Inputs */
input {
    width: 90%; /* Ajusta este valor para hacer el borde más corto */
    padding: 12px;
    margin: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-bottom: 2px solid white;
}

.testlogo {
    width: 200px; 
    height: auto;
}

/* Texto de privacidad */
.privacy-text {
    font-size: 12px;
    color: gray;
}

/* Botón */
button {
    width: 100%;
    padding: 15px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}


button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}
