body {
    margin: 0;
    padding: 0;

    font-family: 'Roboto';
}

#login-container {
    width: 100vw;
    height: 100vh;
}

.login-gradient {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
  
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}



.login-form {
    width: 33vw;
    height: 101%;

    align-content: center;
    position: absolute;
    left: 16%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: linear-gradient(
        90deg,
        rgba(28, 29, 34, 0.99) 55%,
        rgba(28, 29, 34, 0.99) 65%,
        rgba(28, 29, 34, 0.99) 75%,
        rgba(28, 29, 34, 0.99) 95%,
        rgba(28, 29, 34, 0.1) 98%,
        rgba(28, 29, 34, 0) 100%
    );
    border-radius: 3px;
}

.login-other {
    position: relative;
    top: -7%;
    left: 45.5%;
    transform: translate(-50%, -0%);
    text-align: center;
    font-size: 16px;
    color: #ffffff5c;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 80%;
}

.login-other > .items {
    display: flex;
    justify-content: center;
    width: 100%;
}

.login-other > .items button {
    width: 100%;
    height: 4.2vh;
    position: relative;
    background-color: #5865F2;
    outline: none;
    border: none;
    color: white;
    border-radius: 3px;
    margin-bottom: 6vh;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-other > .items button:hover {
    opacity: 0.8;
    cursor: pointer;
}

.login-form img {
    width: 60%;

    position: relative;
    top:-12vh;
    left: 35%;
    transform: translate(-50%, -0%);
}

.login-form > .loginmsg > .loginaccount {
    position: relative;
    top: 4vh;
    left: 55.5%;
    
    transform: translate(-50%, -0%);
    color: #ffffff;
    font-size: 33px;
    font-weight: bold;
}

.login-form > .loginmsg > .loginaccount > .highlight {
    color: #a5c3dc;
}

.login-form > .loginmsg > .loginaccess {
    position: relative;
    top: 2vh;
    left: 56%;
    
    transform: translate(-50%, -0%);
    color: #e9e9e987;
    font-size: 14px;
    font-weight: bold;

    text-transform: uppercase;
}

.login-form > .info {
    width: 80%;
    height: fit-content;
    position: relative;
    top: 55vh;
    left: 45.5%;
    transform: translate(-50%, -0%);
    padding: 10px;
    border-radius: 3px;
    background-color: rgba(112, 136, 224, 0.12);
    color: #7088e0;
    padding: 10px;
}

.login-form > .info i {
    position: absolute;
    left: 5%;
    top: 16%;
}

.login-form > .info > .wrapper {
    width: 90%;
    position: relative;
    left: 8%;

    font-size: 14px;
}

.login-form form {
    width: 80%;
    height: fit-content;
    position: relative;
    top: -3vh;
    left: 45.5%;
    transform: translate(-50%, -0%);
    text-align: center;
}

.login-form form > .input {
    background: rgb(42, 45, 52, 0.89) !important;
    width: 100%;
    height: 5.7vh;
    border-radius: 3px;
    margin-bottom: 15px;
    display: flex;

    border: 1px solid rgb(83 89 102 / 89%);
}

.login-form form > .input i {
    width: 10%;
    height: 100%;
    float: left;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 16px;
}

.login-form form > .input input {
    width: 90%;
    height: 100%;
    float: right;

    outline: none;
    border: none;

    background: transparent !important;

    color: white;
}

.login-form form button {
    width: 100%;
    height: 4.2vh;
    position: relative;
    top: 1.7vh;
    background-color: #88a0b5;
    outline: none;
    border: none;
    color: white;
    border-radius: 3px;
    margin-bottom: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form form button:hover {
    opacity: 0.8;
    cursor: pointer;
}

.login-form form button > .loader {
    margin-right: 0.2vw;

    display: none;
}



.login-form form > .error {
    width: 100%;
    height: fit-content;
    position: relative;
    top: 1vh;
    left: 50%;
    transform: translate(-50%, -0%);
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 1vh;
    background-color: rgba(224, 88, 88, 0.12);
    color: rgb(224, 88, 88);
}

.login-form form > .error i {
    position: absolute;
    left: 6%;
    top: 30%;
}

.login-form form > .error > .wrapper {
    width: 90%;
    position: relative;
    left: 8%;

    font-size: 15px;
}

.create-account:hover {
    opacity: 0.9;
    cursor: pointer;
}