*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
}
body{
    font-family: 'PT Sans', sans-serif;
}
.form-control{
    outline: none !important;
    box-shadow: none !important;
    background: #E8E7FE;
    border-color: transparent;
}
.btn{
    outline: none !important;
    box-shadow: none !important;
}
label{
    font-weight: 600;
}
.form-control:focus{
    background: #E8E7FE;
}
.with-bg{
    background: url('../img/login-bg.jpg') no-repeat center/cover;
    position: relative;
}
.with-bg:after{
    position: absolute;
    content: '';
    inset:0;
    background: linear-gradient(to bottom,rgba(43,57,64,.5) 30%,#2b3940 100%);
    opacity: 0;
}
.login-form{
    width: 320px;
    max-width: 100%;
}
.login-form h1{
    /* font-weight: 800; */
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-size: 45px;
    text-align: left;
}
.login-form h1 span{
    font-size: 24px;
    display: block;
    font-weight: 300;
}
.login-form .btn{
    min-width: 150px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}