/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Fondo de video */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Asegurar que el body ocupe toda la pantalla y esté centrado */
body {
    height: 100vh; /* Ocupar toda la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo del contenedor del formulario */
.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 350px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Campos de entrada */
input, select {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: rgb(0, 0, 0);
    outline: none;
    font-size: 16px;
    text-align: center;
}

/* Placeholder con color visible */
input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Botón de registro */
button {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 5px;
}

button:hover {
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    transform: scale(1.05);
}

/* Mensajes de error */
.error {
    margin-top: 10px;
    color: #00fff2;
    font-size: 20px;
}


/* Links */
a {
    color: #ff8a00;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
