/* +++++++++++++++++ Common title design for  Login page, Registration page, Reset password, customer new password page +++++++++++++++++++++++++ */
.login-form .title,
.registration-form .title,
.password-reset-form .title,
.customer-new-password .title {
    display        : block;
    font-size      : 24px;
    padding-bottom : 5px;
}
/* +++++++++++++++++  Login page design +++++++++++++++++++++++++ */
.page-login .login-form {
    margin : 0 auto;
}

.page-login .checkout-as-guest-button {
    text-align: center;
}
.page-login .checkout-as-guest-button .checkout-as-guest {
    background: none;
    border: none;
    padding: 0;
}
.page-login .checkout-as-guest-button a {
    display: block;
    font-size: 16px;
    line-height: 35px;
    font-weight: 500;
    color: #171127;
    background: none;
    border: 1px #171127 solid;
    height: 46px;
    width: 318px;
    border-radius: 6px;
    padding: 5px 20px;
    transition: all 300ms ease-out 0s;
}

.page-login .checkout-as-guest-button a:hover {
    color: #ffffff;
    background: #171127;
    border: 1px #171127 solid;
}
/* +++++++++++++++++  Registration page design +++++++++++++++++++++++++ */
.registration-form label {
    width : 150px;
}
.registration-form input {
    width : 305px;
}
.registration-form select {
    width : 312px;
}
.registration-form input.radio,
.registration-form input.checkbox {
    width : auto;
}
.registration-form input.checkbox {
    margin-right : 5px;
}
.registration-form .recaptcha-container {
    padding-left : 150px;
}
/* +++++++++++++++++  Reset password page design +++++++++++++++++++++++++ */

.password-reset-form .lost-password-text {
    color     : #00CED1;
    font-size : 16px;
    padding   : 5px 0;
}
.password-reset-form .form-row {
    display : inline-block;
}
.password-reset-form .form-row label {
    display : block;
    width   : auto;
}
.password-reset-form .form-row input {
    width : 210px;
}
.password-reset-form .form-row.submit-row button {
    margin-left : 3px;
}
.dockable {
    background-color : #FFFFFF;
    position : fixed;
}
.password-reset-form .form-row {
    position : relative;
}
.password-reset-form .errorlist.after {
    left     : 0;
    position : absolute;
    top      : 58px;
    width    : 140px;
}
/* +++++++++++++++++  customer new password page design +++++++++++++++++++++++++ */
.customer-new-password .form-row label {
    width : 120px;
}



/* +++++++++++++++++  Login page design +++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {
    .page-login .login-form {
        background-color: transparent;
        padding: 0;
        width: auto;
    }
    .login-form input {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        height: auto;
        padding: 7px;
        width: 100%;
    }
}
/* +++++++++++++++++  registration page design +++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {
    .registration-form {
        padding: 0;
    }
    .registration-form label {
        display: block;
    }
    .registration-form input,
    .registration-form select {
        box-sizing: border-box;
        height: auto;
        padding: 7px;
        width: 100%;
    }
}