/* --- VIDEO SUPERIOR ---- */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Banner de video */
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

body {
    font-family: "Bungee", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.registro-contenedor {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 90%;
    max-width: 450px;
    margin-top: 10vh;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.registro-contenedor h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.registro-contenedor form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registro-contenedor label {
    text-align: left;
    font-size: 14px;
}

.registro-contenedor input[type="text"],
.registro-contenedor input[type="email"],
.registro-contenedor input[type="password"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: inherit;
}

.registro-contenedor input[type="submit"] {
    background: #00A859;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 15px;
    width: 100%;
}

.registro-contenedor input[type="submit"]:active {
    transform: scale(0.98);
}

.registro-contenedor input[type="submit"]:hover {
    background: #008f4c;
}

.Login {
    font-size: 16px;
    color: #F5F5F5;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: bold;
    z-index: 1;
}

.Login a {
    color: #00A859;
    text-decoration: none;
}

.Login a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .registro-contenedor {
        padding: 20px;
    }
    
    .registro-contenedor h2 {
        font-size: 24px;
    }
}