/* ===================================================================================== */
/* ============== Shared styles between login form and Registration Form =============== */
/* ===================================================================================== */

.registration-form label,
.login-form label {
    clear: both;
    padding: 15px 0 10px;
    font-size: 11px;
    line-height: 12px;
    cursor: pointer;
    text-transform: none;
}
.registration-form,
.login-form {
    position: relative;
    display: block;
    visibility: hidden;
    overflow: hidden;
    max-width: 330px;
    max-height: 0;
    margin: 0 auto;
    -webkit-transition: opacity 250ms ease-in-out, max-height 250ms ease-in-out;
            transition: opacity 250ms ease-in-out, max-height 250ms ease-in-out;
    opacity: 0;
}
.single-login .login-form,
.registration-form.is-active,
.login-form.is-active {
    visibility: visible;
    overflow: visible;
    max-height: inherit;
    opacity: 1;
}
.registration-form .input-box,
.login-form .input-box {
    position: relative;
    float: none;
}
.registration-form input,
.login-form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 42px;
}

/* ================================================= */
/* ============== Login Form Styling =============== */
/* ================================================= */

.title-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0 20px;
}
.title-container .login-title {
    display: inline-block;
    width: auto;
    width: 49%;
    padding: 5px 0;
    font-size: 18px;
    line-height: 30px;
    cursor: pointer;
    text-align: center;
    vertical-align: bottom;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    border-bottom: 2px solid #fff;
    background: none;
}
.title-container .login-title:hover {
    color: #000;
    background-color: transparent;
}
.title-container .login-title.is-active {
    color: #000;
    border-color: #000;
}
.login-form .message {
    clear: both;
    color: #b44;
}
.login-form span.forgot-pw {
    display: block;
    clear: both;
    width: 220px;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: underline;
    color: #888;
}
.login-form span.forgot-pw:hover {
    color: #000;
}
.login-form .keep-me-logged-in-container {
    padding-top: 15px;
}
.login-form button {
    float: left;
    width: 220px;
    margin-bottom: 15px;
    line-height: 40px;
    background-color: #333;
}
.login-form  .register .benefits {
    line-height: 20px;
}
.login-form  .register .benefits .benefits-header {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 16px;
}
.login-form button:hover {
    color: #fff;
    background: #000;
}
.login-form .ajax-overlay {
    background-position: center;
}

/* ================================================= */
/* =========== Registration Form Styling =========== */
/* ================================================= */
.registration-form .chzn-container-single .chzn-single {
    line-height: 42px!important;
}
.registration-form .select-wrap a {
    height: 40px!important;
}
.registration-form .two-column {
    float: left;
    width: 67%;
}
.registration-form .two-column:first-child {
    width: 33%;
}
.loyalty-form-container .newsletter,
.registration-form .newsletter {
    margin: 20px 0 0;
}
.loyalty-form-container .newsletter a,
.registration-form .newsletter a {
    text-decoration: underline;
}
.loyalty-form-container .newsletter label,
.registration-form .newsletter label {
    font-size: 13px;
    line-height: 22px;
    padding: 5px 0;
}
.loyalty-form-container .newsletter input[type="radio"],
.loyalty-form-container .newsletter input[type="checkbox"],
.registration-form .newsletter input[type="radio"],
.registration-form .newsletter input[type="checkbox"] {
    display: none;
}
.loyalty-form-container .newsletter input[type="radio"] + i,
.registration-form .newsletter input[type="radio"] + i {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border: 1px solid #333;
    border-radius: 100%;
    background-color: #fff;
}
.loyalty-form-container .newsletter input[type="checkbox"] + i,
.registration-form .newsletter input[type="checkbox"] + i {
    position: relative;
    top: 5px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 3px;
    vertical-align: top;
    border: 1px solid #333;
    background-color: #fff;
}
.loyalty-form-container .newsletter input[type="radio"]:checked + i,
.registration-form .newsletter input[type="radio"]:checked + i {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #333;
}
.loyalty-form-container .newsletter input[type="checkbox"]:checked + i,
.registration-form .newsletter input[type="checkbox"]:checked + i {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background-color: #333;
}
.loyalty-form-container .newsletter input ~ p,
.registration-form .newsletter input ~ p {
    display: inline;
}
.loyalty-form-container .newsletter .opt-in-loyalty p,
.registration-form .newsletter .opt-in-loyalty p {
    padding: 0 0 10px;
    margin: 0;
}
.loyalty-form-container .newsletter .opt-in-marketing,
.registration-form .newsletter .opt-in-marketing {
    padding: 15px 0 0;
}
.registration-form  button {
    position: relative;
    width: 220px;
    height: 40px;
    margin: 20px 0;
    color: #fff;
    background-color: #333;
}
.registration-form button:hover {
    background-color: #000;
}
.registration-form .ajax-overlay {
    display: none;
    background-position: center;
}
