/* Default background for web/desktop */
.customer-account-login .page-wrapper {
    background: url('../../images/Main-Banner-LR10.jpg') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/* Mobile background using a media query */
@media (max-width: 767px) {
    .customer-account-login .page-wrapper {
        background: url('../../images/Main-Banner--Moble-LR10.jpg') no-repeat center center fixed;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}

/* Ensure full width for blocks on wider screens and print */
@media (min-width: 769px), print {
    .login-container .block {
        width: 100% !important;
    }
}

.login-container .block .block-title {
    border-bottom-color: #fff !important;
}

/* Flexbox centered column with vendor prefixes */
div.column.main {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 100vh !important;
}

.control {
    width: 100% !important;
}

.page-title-wrapper {
    display: none;
}

.login-container .fieldset {
    margin-bottom: 0 !important;
}
.login-container .fieldset::after {
    margin-bottom: 0 !important;
}

/*.block::before {*/
/*    height: 36px;*/
/*    line-height: 34px;*/
/*    margin: 57px 0 0 -18px;*/
/*    min-width: 36px;*/
/*    background: #fff;*/
/*    border: 1px solid #c1c1c1;*/
/*    border-radius: 50%;*/
/*    box-sizing: border-box;*/
/*    color: #c1c1c1;*/
/*    content: attr(data-label);*/
/*    display: inline-block;*/
/*    left: 50%;*/
/*    letter-spacing: normal;*/
/*    padding: 0 .2rem;*/
/*    position: absolute;*/
/*    text-align: center;*/
/*    text-transform: uppercase;*/
/*    top: 0;*/
/*}*/