/*------------------ Google Fonts --------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*------------------ common style --------------------------*/
.text-center {
    text-align: center;
}
.login-panel-row {
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
.login-panel-right-inner-container, .panel-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .login-panel-row {
        display: block;
    }
}
/*-------- @media 767 ends here ----------*/

/*------------------ right column style --------------------------*/
.login-panel-right-container {
    background: #ECF2F6;
    padding-top: 60px;
    padding-bottom: 60px;
}

/*------------------ Left column style --------------------------*/
.page-login--main .panel-block .login-panel {
    max-width: 370px;
    width: 100%;
    margin: 0px auto;
    padding: 60px 0;
}

/*------ Panel header style ------*/
.login-panel__logo {
    margin: 0 0 34px;
}
.login-panel__heading {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #29373A;
    margin: 0 0 34px;
}

/*------ Panel form style ------*/
.login-panel__form label {
    display: none;
}
.login-panel__form .form-control {
    height: 48px;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 20px;
    color: #7C7D82;
    background: #F4F7FB;
    border: 1px solid #C9C9C9;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.login-panel__form .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #7C7D82;
    opacity: 1; /* Firefox */
}
.login-panel__form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #7C7D82;
}
.login-panel__form .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #7C7D82;
}
.login-panel__form .form-group {
    margin-bottom: 26px;
}
.login-panel__form .form-group.login-panel__form-actions {
    margin-bottom: 12px;
}
.login-panel__form .btn {
    font-weight: bold;
}
.login-panel__form .btn-success {
    background-color: #62AB40;
    border-color: #62AB40;
}
.login-panel__form .btn-success:hover, .login-panel__form .btn-success:focus, .login-panel__form .btn-success.focus,
.login-panel__form .btn-success:active, .login-panel__form .btn-success.active {
    background-color: #57993a;
    border-color: #57993a;
}
.login-panel__forgot-password {
    font-size: 12px;
    line-height: 15px;
    color: #7C7D82;
    margin: 0px 0 10px;
}
.login-panel__forgot-password a {
    color: #7C7D82;
    text-decoration: underline;
}
.login-panel__forgot-password a:hover, .login-panel__forgot-password a:focus {
    color: #42742c;
}

/*------Separator style ------*/
.login-panel__separator {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
}
.login-panel__separator::before, .login-panel__separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #C9C9C9;
}
.login-panel__separator::before {
    margin-right: .9em;
}
.login-panel__separator::after {
    margin-left: .9em;
}

/*------ SSO button style ------*/
.login-panel__sso {
    border-top: none;
    padding-top: 0px;
    margin: 0px 0 56px;
}
.login-panel__sso-grp {
    margin: 0px 0 10px;
}
.btn-sso {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #29373A;
    border: 1px solid #D0D0D0;
    border-radius: 3px;
    padding: 16px 55px;
    display: inline-block;
    max-width: 367px;
    width: 100%;
    position: relative;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    transition: all 200ms ease;
}
.btn-sso:hover, .btn-sso:focus, .btn-sso:active, .btn-sso.active {
    color: #29373A;
    border: 1px solid #F7F5F5;
    background: #F7F5F5;
    text-decoration: none;
}
.btn-sso:before, .btn-sso:after {
    content: '';
    position: absolute;
    width:54px;
    height: 100%;
    top: 0;
    left: 0;
}
.btn-sso:before {
    background: #F7F5F5;
    border-radius: 3px;
}
.btn-sso.btn-sso-google:after {
    background: url('/ui/images/sso/google.svg') no-repeat;
    background-position: center;
}
.btn-sso.btn-sso-microsoft:after {
    background: url('/ui/images/sso/microsoft.svg') no-repeat;
    background-position: center;
}
.btn-sso.btn-sso-clever:after {
    background: url('/ui/images/sso/clever.svg') no-repeat;
    background-position: center;
}
.btn-sso.btn-sso-classlink:after {
    background: url('/ui/images/sso/classlink.svg') no-repeat;
    background-position: center;
}
.btn-sso.btn-sso-gg4l:after {
    background: url('/ui/images/sso/gg4l.svg') no-repeat;
    background-position: center;
}

/*------------------ panel footer style --------------------------*/
.login-panel__footer {
    margin: 0px 0;
}
.login-panel__footer p {
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    color: #7C7D82;
    margin: 0;
}
.login-panel__footer p a {
    color: #7C7D82;
    text-decoration: underline;
}
.login-panel__footer p a:hover, .login-panel__footer p a:focus {
    color: #42742c;
}
