#video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

body {
    font-family: Arial, sans-serif;
    background-color: #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

h2 {
    font-family: 'Optima', sans-serif;
    margin-bottom: 10px;
    font-size: 32px;
    color: white;
    text-shadow:
        -2px -2px 0px black, 
        2px -2px 0px black, 
        -2px 2px 0px black, 
        2px 2px 0px black;
}

label {
    color: white;
    text-shadow: 2px 2px 4px rgb(112, 9, 98);
}

input {
    width: 20%;
    padding: 5px;
    margin: 10px 0;
    ;border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: white;
    padding: 10px 15px;
    border: 1px solid #070707;
    border-radius: 8px;
    cursor: pointer;
}
button:hover {
    background-color: #424242;
}