* {
    margin: 0;
}

video {
    position: fixed;
    width: 100%;
    z-index: -1;
}

#content {
    width: 100%;
    height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
}

#conter {
    border-radius: 10px;
    width: 600px;
    height: 800px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#titulo {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #ffffff;
    letter-spacing: 3px;
}

form {
    display: grid;
    justify-content: center;
}

form input {
    width: 300px;
    margin-bottom: 20px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

label {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
    font-size: 17px;
    color: #e0e0e0;
    letter-spacing: 1px;
}

form div{
    width: 100%;
    text-align: center;
}

button {
    width: 200px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);

}

button:hover {
    text-decoration: underline;
}