.login-wrapper>* {
    height: 100%;
}

.logo {
    max-width: 150px;
}

.login-wrapper .login-container-block {
    min-width: 450px;
    max-width: 450px;
}

.pull-bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 0 50px;
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: lowercase;
    width: 100%;
    margin: 15px 0;
    font-family: var(--font-family-primary);
    color: var(--text-color);
    font-size: var(--paragraph-font);
    line-height: var(--paragraph-line-height);
    letter-spacing: normal;
}

.separator:before {
    font-size: 0.875rem;
    color: var(--border-color);
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.separator:after {
    font-size: 0.875rem;
    color: var(--border-color);
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--border-color)
}

.social-login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-login button.form-scl-icon {
    width: 48px;
    border-radius: 50%;
    box-sizing: border-box;
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: center;
    background-color: inherit;
    margin: 0 4px;
    height: 48px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    outline: none;
}

.social-login button.form-scl-icon.google {
    background-image: url(../../images/google.svg);
}

.social-login button.form-scl-icon.apple {
    background-image: url(../../images/apple.svg);
}

.social-login button.form-scl-icon.linkedin {
    background-image: url(../../images/linkedin.svg);
}
#appleid-signin>div {
    display: none;
}
.termConditions {
    font-size: 0.845rem;
    font-weight: 300;
    padding-top: 3px;
    padding-bottom: 1rem;
    text-align: center;
}
.termConditions > p {
    color: #afafaf;
    margin: 0;
}
.termConditions > p > a {
    color: #111111;
}
#userLoginForm.register {
    padding: 0 20px;
}
@media (max-width:1024px) and (min-width:768px){
    .login-wrapper .login-container,.pull-bottom{
        width: 50%;
    }
    .login-wrapper .bg-pic{
        width: 50%;
    }
    .bg-caption{
        width: 100%;
        padding: 0 15px;
    }
}
@media(max-width:767px){
    .login-wrapper .login-container, .pull-bottom{
        width: 100%;
    }
    .login-wrapper .bg-pic{
        width: 0;
    }
    .login-wrapper .login-container-block {
        min-width: auto;
        max-width: 450px;
    }
}