body {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-family: TTNormsProMedium, MyriadSemibold, Segoe UI, Arial, PingFang TC, Microsoft JhengHei, sans-serif;
    background: linear-gradient(rgb(230, 234, 252),rgb(255, 240, 254), rgb(255, 240, 245));
}
.nav{
    display: flex;
    justify-content: center;
    position: fixed;
    backdrop-filter: blur(50px);
    width:100;
    height:60px;
    width: 100%;
    z-index: 2;
    background-color: rgb(255, 255, 255);
    -webkit-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
a{
    text-decoration: none;
    color: black;
}
.nav-content{
    max-width: 1200px;
    width: 90%;
    height: 100%;
    position: fixed;
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    font-size: 100%;
    font-weight: 500;
}
.nav-left{
    display: flex;
    align-items: center;
    width: 10%;
}
.nav .logo{
    width: 130%;
}
.tag{
    font-size: 14px;
    padding: 0px 20px;
    -webkit-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}
.tag:hover{
    color:rgb(0, 0, 0)
}
.nav-right{
    display: flex;
    align-items: center;
}
.main{
    width:100%;
    min-height: calc(100vh - 60px);
    
}
.login-page-container{
    width:100%;
    height:550px;
    margin-top:12%;
    display: flex;
    justify-content: center;
}
.login-page-main{
    width: 1000px;
    height:100%;
    background-color: rgb(255, 255, 255);
    display:flex;
    justify-content: space-between;
    border-radius: 20px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.068);
}
.login-page-left{
    height:100%;
    width:45%;
}
.login-page-logo-container{
    width:100%;
    height:38%;
    margin-left:15px;
    margin-top: 43px;
    display: flex;
    justify-content: center;
}
.login-logo{
    height:100%;
}
.login-page-left-title{
    font-size: 30px;
    font-weight: 620;
    margin-left:50px;
    margin-top: 28px;
}
.login-page-discription{
    font-size: 17px;
    font-weight: 300;
    margin-left:50px;
    margin-top: 24px;
    line-height: 1.4;
}
.main-discription{
    margin-bottom:20px;
    font-size:18px;
    display: block;
    font-weight: 500;
}
.login-page-divider-container{
    width:1px;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.login-page-divider{
    height: 90%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.158);
}
.login-page-right{
    height:100%;
    width:45%;
}
.login-page-right-title{
    font-size: 24px;
    font-weight: 600;
    margin-top: 75px;
    margin-bottom: 30px;
}
.login-section{
    margin-bottom: 25px;
}
.login-section-title{
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 13px;
}
.login-section-password{
    margin-top: 15px;
}
.input-box{
    display: block;
    width: 82%;
    height:44px;
    border-radius: 5px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.247);
    margin-bottom: 5px;
    padding: 0px 15px;
}
.input-box:focus{
    border: 1px solid rgb(62, 84, 209);
}
.login-alert{
    font-size: 14px;
    color:rgb(95, 95, 95);
    width:95%;
    display: inline-block;
}
.password-alert{
    display: none;
}
.remember-me{
    margin-top: 10px;
}
.remember-me-discription{
    margin-left: 5px;
}
.submit-button{
    height:48px;
    width:89%;
    outline: none;
    border: none;
    border-radius: 5px;
    background-color: rgb(4, 92, 223);
    color: white;
    font-size: 18px;
}
.submit-button:hover{
    background-color: rgb(0, 79, 197);
}
.register-discription{
    margin-top: 21px;
    display: block;
    text-align: center;
    margin-right: 45px;
    font-size: 16px;
}
#login-information{
    color: rgb(160, 0, 0);
    margin-top: 3px;
    margin-right: 20px;
    width: 90%;
    font-size: 15px;
}


.footer{
    width:100%;
    height:60px;
    display:flex;
    align-content: center;
    justify-content: center;
}
.footer-content{
    margin-top: 20px;
    max-width: 1200px;
    width:90%;
    color: rgb(112, 112, 112);
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}
.copyright{
    display: inline-block;
}
.footer-tags a{
    display: inline-block;
    color: rgb(112, 112, 112);
    margin-left: 30px;
}
.footer-tags a:hover{
    color: rgb(37, 37, 37);
}