body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh !important;
    height: auto;
    background: linear-gradient(
          rgba(0, 0, 0, 0.2), 
          #00000099
        ),
    url(../img/login.jpg);
}

#main-title {
    text-align: center;
    position: fixed;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 90px;
    font-weight: 900;
    color: white;
    border-radius: 10px;
}

.login-box {
    margin-top: 150px;
    width: 85vw;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff00;
    backdrop-filter: blur(5px) brightness(0.5);
    -webkit-backdrop-filter: blur(5px) brightness(0.5);
    color: white;
}

.login-box #login-title {
    width: 100%;
    margin-bottom: 2vh;
    text-align: center;
    color: #ececec;
    font-weight: 500;
    font-style: normal;
    font-size: 8vh;
}

.login-box #login-remember-me {
    padding-left: 2px;
    padding-top: 5px;
    padding-bottom: 25px;
}

.login-box form div {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 15px 0;
}

.login-input input {
    width: 100%;
    height: 100%;
    padding: 2vh;
    padding-top: 2.5vh;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    outline: none;
    font-size: 3vh;
    color: #fff;
}

.login-input input::placeholder {
    color: #fff;
}

.login-input #login-submit {
    padding: 0px;
    padding-top: 0.5vh;
    background: #fff;
    color: #333;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 3vh;
    font-weight: bolder;
    content: "";
}

.login-input i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3vh;
}


/* For Mobile users */
@media screen and (min-width: 321px) and (max-width: 960px) {
    #main-title {
        width: 100%;
        font-size: 8vh;
    }

    #login-title {
        font-size: 7vh;
    }

    .login-box {
        margin-top: 150px;
        width: 85vw;
    }
}

/* For PC users */
@media screen and (min-width: 720px) {
    #main-title {
        font-size: 90px;
    }
    
    #login-title {
        font-size: 8vh;
    }

    .login-box {
        margin-top: 200px;
        width: 20%;
    }
}
