
@font-face {
    font-family: 'SF_Pro_display.otf';
    src:  url('../fonts/SFPRODISPLAYREGULAR.OTF') format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF_Pro_display.otf';
    src:  url('../fonts/SFPRODISPLAYBOLD.OTF') format("opentype");
    font-weight: 700;
    font-style: normal;
}

html{
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
    position: absolute;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

h1, h2, h3, h4, h5, p{
    margin: 0;
    padding: 0;
}

*:focus {
    outline: 0;
    outline: none;
}

a{
    color: #3d465a;
    transition: .3s;
    text-decoration: none;
}

a.link:hover{
    opacity: 0.8;
}

button{
    outline: none !Important;
}

button:focus, button:active {
    outline: none !important;
    box-shadow: none;
}

button:hover{
    cursor: pointer;
}

a{
    color: #000000;
}

a:hover{
    text-decoration: none !important;
}
a:visited{
    text-decoration: none;
}


img:focus {
    outline:none !important;
}


body{
    font-family: 'SF_Pro_display.otf';
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0px;
}


ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}


.login-page{
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.login-page .container{
    display: flex;
    flex-wrap: nowrap;
    width: 1100px;
    margin: 0 auto;
    max-width: 100%;
    align-items: center;
    gap: 20px;
}

.login-page .container .title-box{
    flex: 1;
    color: #ffffff;
    font-weight: 500;

}

.login-page .container .title-box img{

}

.login-page .container .title-box h1{
    font-size: 28px;
    margin-top: 35px;
    width: 100%;
    margin-bottom: 30px;
    font-weight: 500;
}

.login-page .container .title-box .rights{
    font-size: 20px;
}

.login-page .container .title-box ul{

}

.login-page .container .title-box ul li{
    display: inline-block;
}

.login-page .container .title-box ul li:first-child:after{
    content: '';
    display: block;
    width: 2px;
    height: 15px;
    background-color: white;
    display: inline-block;
    margin-top: -4px;
    vertical-align: middle;
}

.login-page .container .title-box ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}

.login-page .container .title-box ul li a:hover{
    opacity: 0.8;
}

.login-page .container .form-box{
    /* flex: 1; */
    background-color: #ffffff;
    text-align: center;
    border-radius: 8px;
    width: 50%;
}

.login-page .container .form-box form{
    padding: 60px;
}


.login-page .container .form-box h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.login-page .container .form-box h3{
    font-size: 20px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
    font-weight: 500;
}

.login-page .container .form-box input{
    height: 45px;
    width: 100%;
    display: block;
    border: 1px solid #565656;
    margin-bottom: 10px;
    border-radius: 4px;
    padding: 0 20px;
     font-size: 16px;
}


.login-page .container .form-box input::placeholder{
    font-size: 16px;
    color: #C9C9C9;
}


.login-page .container .form-box .login-response{
    text-align: left;
    color: #3E1C5A;
    font-size: 14px;
    font-weight: 700;
}


.login-page .container .form-box button{
    background-color: #3E1C5A;
    color: #ffffff;
    height: 45px;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    transition: .3s;
}

.login-page .container .form-box button:hover{
    opacity: 0.8;
}

.login-page .container .form-box .languages{
    margin-top: 20px;
    margin-bottom: 20px;
}

.login-page .container .form-box .languages li{
    border-radius: 10px;
    background-color: #FAFAFA;
    width: 46px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-page .container .form-box .languages li a{

}

.login-page .container .form-box .not-member a{
    font-weight: 700;
}


.login-page .container .form-box .cta-renew{
    margin-top: 10px;
    font-weight: 700;
    display: block;
    text-align: right;
}

.login-page .container .form-box .not-member a:hover, .login-page .container .form-box .cta-renew:hover{
    color: #3E1C5A;
}

