

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 250ms ease-out;
}
body {
    width:100%;
    height:100%;
    font-family: 'Ubuntu', sans-serif;
    color:#777;
}
.loginBackground {
    background: url(../images/erp_bg.jpg);
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    background-position: center center;
    filter: blur(3px); 
}
.flexbox {
    display: flex;
    align-items: center;
    /*height: 100vh;*/
    justify-content: center;
}
.loginContainer {
    width: 60%;
    display: table;
    margin: 0 20%;
    box-shadow: 0px 0px 29px 0px rgba(51, 51, 51, .3);
    border-radius: 10px;
}
.LoginBox {
    background: #fff;
    width: 50%;
    padding: 8%;
    border-radius: 10px 0px 0px 10px;
    display: table-cell;
    vertical-align: middle;
}
.welcomeBox {
    width: 50%;
    padding: 5%;
    border-radius: 0px 10px 10px 0px;
    display: table-cell;
    vertical-align: middle;
    background: #3862f5;
    color: #fff;
}
.erplogo {
    max-width: 200px;
    display: block;
    margin: 10px auto;
}
.p1 {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.mTop30 {
    margin-top:30px;
}
.formwrap {
    position:relative;
}
    .formwrap span {
    position: absolute;
    top: 20px;
    left: 13px;
    }
.inputfield {
    padding: 8px 15px 8px 35px;
    border-radius: 50px;
    border: 1px solid #ccc;
    margin: 8px 0;
    width: 100%;
    outline: none;
}
.LSButton {
    width: 100%;
    background: #3862f5;
    color: #fff;
    border: none;
    border-radius: 20px;
    height: 38px;
    margin: 8px 0;
    text-transform: uppercase;
    outline:none;
}
.LSButton:hover {
    box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.2);
}
.detailBox {
    background: #fff;
    padding: 5%;
    border-radius: 10px;
}
.detailBox .form-control {
    margin: 10px 0;
}
.detailBox .erplogo {
    margin: 15px auto;
}
.detailBox  .text-center {
    margin-bottom:25px;
}
.p2 {
    text-align: left;
    font-weight: 700;
    margin: 15px 0;
}

@media (max-width:1200px){
.loginContainer {
    width: 76%;
    margin: 0 12%;
}
}

@media (max-width:992px){
.loginContainer {
    width: 90%;
    margin: 0 5%;
}
}

@media (max-width:767px){
.welcomeBox {
   display:none;
}
.LoginBox{
    border-radius:10px;
}
.flexbox {
    padding:10%;
}
}