.bgvideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -9999;
}

.content {
    width: 100%;
    margin-top: 15%;
}
.content-row {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}
.empty-block {
    width: calc((100% - 350px)/2);
}
.authorization {
    width: 350px;
}
.feedback-block {
    width: calc((100% - 350px)/2);
}

.login-title {
    color: #49DED5;
}
.custom-input {
    width: 100%;
    height: 50px;
    background-color: #868898;
    color: #CBCDEA;
    border: none;
}
.custom-input:hover,
.custom-input:focus {
    background-color: #49DED5;
    color: #04302A;
    box-shadow: inset 0px 0px 5px 3px #8A2BE2;
}
.success-input {
    background-color: #49DED5;
    color: #04302A;
}
.failure-input {
    box-shadow: inset 0px 0px 5px 3px red;
}

.input-feedback {
    color: red;
    padding-left: 20px;
    font-size: 22px;
    font-weight: 400;
}

#authorize {
    font-size: 20px;
    margin-top: 20px;
    color: #DBE2E1;
    border: 6px solid #49F5EA;
    border-radius: 12px;
}
#authorize:hover,
#authorize:focus {
    background-color: #49DED5;
    color: #0E786B;
    border-color: #49DED5;
    box-shadow: 0px 0px 10px 5px #8A2BE2;
}