@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,200i,300,400,500,600,700,800,900&display=swap");
body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}
.main-head{
    height: 150px;
    background: #FFF;
}
.sidenav {
    height: 100%;
    background-color: #fff;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(255,255,255,0.8) 0,rgba(255,255,255,0.8) 100%), url("../../home.jpg");
    background-position: center;
    background-size: cover;
    position: fixed;
    width: 100%;
    top: 0;
}
.main {
    padding: 10px 0;
    /*background: #fffc;*/
    position: relative;
    border-radius: 5px;
    margin: 10px;
    min-height: calc(100vh - 20px);
}
.login-main-text{
    margin-top: 0;
    padding: 10px 25px;
    color: #395AF7;
    font-size: 20px;
    display: none;
}
.logintext{
font-size: 22px;
font-weight: 500;
margin-bottom: 20px;
color: #888;
letter-spacing: 0.5px;
}
.logomain{
min-width: 300px;
text-align: left;
display: inline-block;
padding: 0 10%;
text-align: center;
}
.form-control{
    height: 40px;
    border-radius: 3px;
    border: 1px solid #888;
    font-size: 15px;
}
.form-control:focus{
    border: 1px solid #F47227;
    box-shadow: none;
}
.selectoption{
    padding: 0 6px;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 3px;
}
.login-form{
margin-top: 20px;
max-width: 100%;
}
.logomain-mobile{
    color: #ff656a;
    font-size: 22px;
    padding: 0 15px;
    text-align: center;
}
.btn-secondary{
width: calc(50% - 2px);
color: #007dff;
background-color: #fff;
border-color: transparent;
box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    color: #007dff;
    background-color: #fff8 !important;
    border-color: #fff8 !important;
    border-color: transparent !important;
    box-shadow: none;
}
.desc{
    color: #222; margin: 10px 0; font-size: 14px;
}
@media screen and (min-width: 768px){
    .sidenav {
        background-image: linear-gradient(rgba(255,255,255,0.7) 0,rgba(255,255,255,0.7) 100%), url("../../home.jpg");
    }
    .login-main-text{
        margin-top: 30vh;
        padding: 0;
        text-align: center;
        display: block;
    }
    .logomain-mobile{
        display: none;
    }
    .main{
        margin: 0;
        margin-left: 40%; 
    }
    .sidenav{
        width: 40%;
        z-index: 1;
        top: 0;
        left: 0;
    }
    .login-form{
        margin-top: calc(30vh - 30px);
        max-width: 400px;
    }
    .signup-form{
        margin-top: 10vh;
    }
    .register-form{
        margin-top: 20%;
    }
    .alert{
        margin-top: -72px;
    }
    .btn-secondary{
    background-color: #efefef;
    }
    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
        background-color: #efefef !important;
        border-color: #efefef !important;
    }
    .col-sm-12{
        padding-left: 30px;
    }
}

.login-main-text h2{
    font-weight: 300;
}
.btn-primary{
background-color: #0065B3;
border-color: #0065B3;
width: 100%;
color: #fff;
height: 44px;
position: relative;
z-index: 1;
overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #F47227 !important;
    border-color: #F47227 !important;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
}
label {
    font-weight: 500;
    font-size: 15px;
}
.btn {
    font-size: 15px;
    padding: 6px 0;
    margin-top: 10px;
}
.btn-primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 110%;
  height: 100%;
  background: #e6373d;
  z-index: 1;
  border-radius: 5px;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0)
}
.btn-primary:hover::before {
  transform: scaleX(1);
  color: #fff !important;
  z-index: -1
}