main {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
}

main > div {
    padding: 12px;
    display: flex;
    justify-content: center;
}


.login-container {
    border: 1px solid #ccc;
    box-shadow: -10px -10px 50px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 800px;
    height: 400px;
    color: white !important;
}

.header-login{
    padding: 40px 0;
    border: none;
}

form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
    padding-top: 0 !important;
}

.submitPosition {
    position: absolute;
    right: 20px;
    bottom: 20px;
    justify-content: end;
}

#btnLoginForm {
    position: relative;
    width: auto !important;
    border-radius: 20px;
    padding: 10px 20px;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url("../img/bg_img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.background-video-color {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px 20px;
    border-color: transparent;
    border-bottom: 1px solid darkgrey;
    font-size: 15px;
    background: transparent;
    color: white;
}

input[type="email"], input[type="password"]:focus {
    outline: none;
}

input[type="email"]::placeholder, input[type="password"]::placeholder {
    font-size: 15px;
    color: white;
}