.w-35 {width: 35%;}
html,
body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
h2{margin-top: 0}
.wrap {
    min-height: 100%;
    height: 100vh;
}
.wrap .container{
    height: 100%; 
    position: relative;
}
.bg-login {
    background-image: url("../images/efulfillment/bg-login.jpg");
    background-size: cover;
    position: relative;
}
.bg-login::after{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
}
.site-login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    border-radius: 15px;
    padding: 0px;
    background: #fff;
    padding: 40px 50px;
    z-index: 2;
}
.site-login .logo-brand{
    width: 100px;
    margin: 0 auto;
    margin-top: -80px;
    background: #fff;
    border-radius: 50%;
    height: 100px;
    border: 1px solid #f75928;
}
.site-login .logo-brand img{
    width: 100%;
    margin-top: 10px;
}
.site-login form {
    margin-top: 2em;
}
.site-login .form-group{
    position: relative;
}
.site-login .form-control{
    border: 1px solid #ced4da;
    height: 40px;
    border-radius: 30px;
}
.site-login .btn-login {
    background-color: #f75928;
    border-color: #f75928;
    height: 2.7em;
    border-radius: 4px;
    color: white !important;
    width: 100%;
    height: 40px;
    font-weight: 700;
    border-radius: 30px;
}
.site-login .btn-login:hover, 
.site-login .btn-login:active{
    opacity: .8
}
.site-login .btn-login:focus {
    outline: 0 !important;
}
.site-login .glyphicon{
    position: absolute;
    right: 15px;
    top: 38px;
    z-index: 2;
    cursor: pointer;
    color: #555555;
}

.site-login .btn-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    color: #8893a1;
    margin-top: -5px;
}
.site-login .btn-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.site-login .btn-checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #f75928;
}
.site-login .btn-checkbox:hover input ~ .checkmark {
    background-color: #fff;
}
.site-login .btn-checkbox input:checked ~ .checkmark {
    background-color: #f75928;
    border: 1px solid #f75928;
}
.site-login .btn-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.site-login .btn-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.site-login .btn-checkbox .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media only screen   and (max-width: 766px){
    .site-login{
        width: 320px;
    }
}