*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*  when I want to center a thing with position */
.center-absolute{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    align-items: center;
    text-align: center;
}


/*  sets the background photo */
.login-wrapper{
    width: 100vw;
    height:100vh;
    background-image: url("/../images/login_bg_5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* make login related things beautiful and easy to see */
.login-box{
    justify-content: space-evenly;
    height: 400px;
    width: 60vw;
    min-width: 350px;
    max-width: 600px;
    background: rgba(245, 245, 255, 0.35);
    backdrop-filter: blur(16px);
    padding: 30px 5px;
    color: rgb(50, 50, 80);
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.35);
}


.label-styled{
    text-align: start;
    padding: 8px;
    font-size: 1.05rem;
}

.btn{
    margin: 20px auto 5px auto;
}

.password-input{
    display: flex;
    justify-content: space-between;
}

/* ensures that the input is long enough to cover the line */
.password-input > input{
    flex-grow: 1;
}

/* gives a little space */
.space-sm{
    display: inline-block;
    width: 15px;
    height: 15px;
}


/* makes pop-up's background less distracting  */
.modal-bg{
    background-color: rgba(10, 10, 10, 0.4);
    height: 100vh;
    width: 100vw;
}


/*  */
.login-info{
    background: white;
    padding: 100px 80px;
    width: 90vw;
    border-radius: 50px;
}

.login-info p{
    text-align: start;
    margin: 10px 0 30px 0;
}


.link-decoration{
    color: #58448d;
    text-decoration: none;
}

.close-btn{
    position: absolute;
    right: 50px;
    top: 40px;
    font-size: 1.2rem;
}


/* make text more alerty */
.important-info{
    text-decoration: underline;
    color: #9f6b6c;
    font-size: 1.2rem;
}


/* shortcut for make a block element */
.block{
    display: block;
}

#login-desicion{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#login-desicion div{
    align-items: center;
}

#login-desicion img{
    width: 90px;
}

#login-desicion button{
    font-size: 1.4rem;
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .login-box{
        width: 95vw;
    }
  }