/*Login*/
.th-login {
    position: absolute;
    width: 361px;
    height: 477px;
    left: calc(50% - 361px/2 + 0.5px);
    top: calc(46% - 477px/2 + 14.5px);
    box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    font-family: "Source Sans Pro", serif;
    font-weight: 400;
    padding-bottom: 16px;
}

.th-login .card{
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 16px;
}

.th-login-brand{
    padding-bottom: 12px;
}

.th-login-caption{
    padding-bottom: 45px;
}

.th-login-center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    border: 3px solid green;
}

.th-login form{
    padding-bottom: 26px;
}

.th-login input{
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    color: #262626;
}

.th-login label{
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #262626;
}

.th-login button{
    border: 1px solid #D9D9D9;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    color: #ffffff;
    border-radius: 4px;
}

.th-login .btn-primary{
    background: #0150AD;
}

.th-login .th-login-links{
    font-family: 'Source Sans Pro', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    align-items: center;
    color: #000000;
}

.th-login-bg{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.th-login-bg::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    transform: rotate(-2.32deg);
    background: linear-gradient(114.33deg, #0150AD 8.29%, rgba(1, 80, 173, 0) 99.55%), url(../../images/login/loginBg.jpg) no-repeat center;
    background-size: cover;
}

.th-login-copyright{
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;;
}