html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoback {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.container {
    display: flex;
    background: #141414;
    max-width: 550px;
    max-height: 250px;
    border-radius: 20px;
    box-shadow: 3px 3px 100px orangered;
}

.form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.login {
    width: 263px;
    background-color: #1f1f1f;
    text-align: center;
    vertical-align: middle;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-top: 13px;
    padding-bottom: 11px;
    box-shadow: 2px 3px 10px 5px black;
}

.presentation {
    flex: 1;
    height: 110px;
    background-color: #141414;
    padding-top: 70px;
    padding-bottom: 70px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-left: 22px;
    box-shadow: 5px -6px 8px orangered;
    color: white;
}

.titles, h2 {
    position: relative;
    color: white;
    bottom: 10px;
}

.Incorrect {
    position: relative;
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    bottom: 14px;
}

.inputbox {
    border-style: none;
    border-bottom: 2px solid rgba(236, 123, 16, 0.947);
    padding-bottom: 5px;
    outline: none;
    background-color: #1f1f1f;
    color: whitesmoke;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1f1f1f inset !important; 
    box-shadow: 0 0 0 30px #1f1f1f inset !important; 
    border-bottom: 2px solid rgba(236, 123, 16, 0.947) !important; 
    -webkit-text-fill-color: whitesmoke !important; 
    color: whitesmoke !important; 
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: #1f1f1f !important; 
    color: whitesmoke !important;
}

.texteD {
    position: relative;
    color: white;
    margin-right: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    bottom: 35px;
}

img {
    position: relative;
    max-width: 110px;
    max-height: 60px;
    left: 70px;
    bottom: 30px;
    border-radius: 30px;
}

.Env {
    position: relative;
    width: 130px;
    background-color: rgba(252, 164, 82, 0.807);
    border-style: none;
    border-radius: 10px;
    bottom: 10px;
    transition: transform 0.1s;
}

.Env:active {
    transform: scale(0.90);
}
