

body{
 padding-bottom: 0;   
}


/*** MENU *****/

.navbar-brand img{
    width: 130px;
}

.navbar{
    background: #fff;
    z-index: 9999;
}

/**** LOGIN - FORGOT ****/
.login .container.mt-5,
.forgot-password .container.mt-5{    
    margin: 0!important;
    max-width: 100%;
    background-color:#2c374c;
    position: absolute;
    top: 0;
    bottom: 0;
    padding-top: 80px;
}

.login .row:first-child,
.forgot-password  .row:first-child{
    height: 100%;
}
.login-content{
    padding: 50px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.login-sidebar{
    background: linear-gradient(to top, #ba0000e5, #2a344870), url("../images/slider.jpg") center center no-repeat !important;
    background-size: cover !important;
}

.login-form{
    max-width: 500px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-form h1{
    font-size: 31px;
    color: #fff;
    font-family: Montserrat;
    font-weight: 500;
    position: absolute;
    top: 14vh;
}

.login-form .col-lg-12.text-lg-right a{
    color: #cecece;
}

.login-form .col-lg-12.text-lg-right a:hover{
    color: #007bff;
}

.forgot-password .login-form h1{
    margin-bottom: 10px!important;
}
.forgot-password .login-form .mb-3{
    margin-bottom: 20px;
    color: #ccc;
    width: 400px;
}

.login-form .form-container{
    border: solid 2px #fff;
    padding: 50px;
    border-radius: 45%;
    animation: rotate 19s  linear forwards infinite;
    height: 380px;
    position: absolute;
    width: 380px;
    margin-top: 100px;
}

.login-form .form-container.two{
    animation: rotate 16s linear forwards infinite;
    height: 400px;
}

.login-form .form-container.three{
    animation: rotate 12s linear forwards infinite;
    width: 400px;
}

@keyframes rotate {
    0% {
      transform: rotate(0) ;
    }
  
    100% {
      transform: rotate(360deg) ;
    }
  }

  .login-form form{
    margin-top: 120px;
    width: 300px;
  }

  .forgot-password .login-form form{
    margin-top: 0px;
    width: 400px;
  }