html,
body {
    height: 100%;
    width: 100%;
}

.login-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20%;
    background-image: url(../img/login-grapihic.svg);
    background-size: 50%;
    background-position: right;
    background-repeat: no-repeat;
}
.btn {
    padding: 8px 22px;
    font-size: 13px;
    width: 100%;
    border-radius: 22px !important;
}
.btn-danger{
    border-color: #cd171f;
    color:#fff;
    background-color: #cd171f;
}
.btn-danger:hover{
    border: 1px solid #cd171f;
    background-color: #fff;
    color: #cd171f;
}
.btn-danger-outline {
    border: 1px solid #cd171f;
    background-color: #fff;
    color: #cd171f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
    border-color: #cd171f;
    color:#fff;
    background-color: #cd171f;

}
.btn-outline:hover {
    border: 1px solid #cd171f;
    border-radius: 22px;
    color: #cd171f !important;
}
.btn-outline {
    border: 1px solid #a8a8a8;
    background-color: #ffffff;
}
.btn-default {
    border: none;
}

.login-page {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaeaea;
    background-blend-mode: overlay;
}


.login-page .overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: blur(2px);
}

.login-page .overlay:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}

.login-box-msg,
.register-box-msg {
    margin: 10px 0 30px;
    padding: 0;
    text-align: left;
    color:#cd171f;
}

.login-box, .register-box {
    width: 330px;
    /* min-height: 340px; */
    margin: 0;
    border-radius: 10px;
    background-color:#fff;
    padding: 20px 25px;
    box-shadow: 0px 0px 18px -4px rgba(125, 141, 175, 0.46);
}
.login-box-body,
.register-box-body {
    padding: 0;
    /*background-color: #143741;*/
    background-color: transparent;
}

.login-logo,
.register-logo {
    margin-bottom: 0px;
}

.login-box input.form-control,
.register-box input.form-control {
    border-width: 0;
    background-color: #f1f1f1 !important;
    border-radius: 4px;
    color: #666666;
}

.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
    color: #bbb;
}

.icheck {
    margin: 0 0 15px 0;
}

.icheck label {
    display: flex;
    align-items: center;
}

.icheck .icheckbox_square-blue {
    margin-right: 8px;
}

.pass-link {
    text-transform: uppercase;
    color: #6c6c6c;
    font-weight: 600;
}

.pass-link:hover,
.pass-link:focus {
    color: #cd171f;;
}

.inline-content {
    display: flex;
    justify-content: space-between;
}

.icheckbox_square-blue, .iradio_square-blue {
    width: 15px;
    height: 15px;
    background-size: cover;
}
.icheckbox_square-blue.checked,
.icheckbox_square-blue.hover {
    background-position: -30px 0;
}

.alert.alert-error {
    background-color: #fff !important;
    color: #fe0000 !important;
    border-color: #fff;
    padding: 0;
}

.pointer {cursor: pointer;}
