body {
    background: none; /* Para evitar conflictos con el fondo */
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-form h2 {
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #000000;
}

.form-control::placeholder {
    color: #000000;
}

.btn-primary {
    background: #000cb8;
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #000cb8;
}

.forgot-link {
    display: block;
    text-align: center;
    color: #ff7eb3;
    margin-top: 10px;
    text-decoration: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}