form.ajax-auth {
    display: none;
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 350px;
    padding: 40px 25px 25px 25px;
    background-color: #FFF;
    border-radius: 0;
    font-family: var(--ff-body);
    box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    color: #878787;
    font-size: 11px;
    transform: translate(-50%, -50%)
}

.ajax-auth h1,
.ajax-auth h3 {
    font-family: var(--ff-body);
    font-weight: 500;
    color: #686868;
    line-height: 1
}

.ajax-auth h1 {
    font-size: 25px;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: var(--ff-primary);
    font-weight: 600;
    color: var(--clr-black)
}

.ajax-auth h3 {
    font-size: 18px;
    text-align: left;
    margin: 0
}

.ajax-auth h3 a {
    color: var(--clr-blue);
    text-decoration: underline;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px
}

.ajax-auth hr {
    background-color: rgba(0, 0, 0, .1);
    border: 0 none;
    height: 1px;
    margin: 15px 0
}

.ajax-auth label {
    font-size: 14px
}

.ajax-auth input#username,
.ajax-auth input#password,
.ajax-auth input#signonname,
.ajax-auth input#email,
.ajax-auth input#signonpassword,
.ajax-auth input#password2 {
    color: #333;
    font-size: 15px;
    width: 100%;
    margin: 7px 0 20px 0;
    font-family: var(--ff-body);
    border: 1px solid #B0B0B0;
    border-radius: 6px;
    padding: 10px 30px;
    background-color: transparent
}

.ajax-auth input#username:focus,
.ajax-auth input#password:focus,
.ajax-auth input#signonname:focus,
.ajax-auth input#email:focus,
.ajax-auth input#signonpassword:focus,
.ajax-auth input#password2:focus {
    background-color: #FFF
}

.ajax-auth label.error {
    display: none !important
}

.ajax-auth input.error {
    border: 1px solid #FF0000 !important
}

.ajax-auth input.submit_button {
    padding: 9px 31px 9px 31px;
    float: right;
    border: none
}

.ajax-auth a {
    text-decoration: none
}

.ajax-auth a.close {
    color: #FFF;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #db1713;
    font-size: 30px
}

.ajax-auth a.text-link {
    float: left;
    margin: 10px 0 0 0;
    color: var(--clr-blue);
    text-decoration: underline;
    font-size: 16px
}

.ajax-auth p.status {
    text-align: center;
    margin: -15px 0 20px 0;
    font-weight: 600;
    display: none
}

a.login_button {
    font-family: var(--ff-body);
    background-color: #FFF;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    display: inline !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 0 !important
}

a.login_button:hover {
    text-decoration: underline
}

a.login_button+a.login_button::before {
    position: absolute;
    content: '/';
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ff-body);
    left: 0
}

a.login_button+a.login_button {
    padding-left: 9px !important
}

.login_overlay {
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: .5;
    position: fixed;
    z-index: 998
}