.login-page {
    border:0;
    margin: 0px;
    padding:0px;
    box-sizing: border-box;
}
.login-page #main-section {
    padding:0px;
    margin:0px;
    min-height: 100vh !important;
}
.login-page .container {
    max-width:100% !important;
    padding:0px;
}
.login-page .mt-5{
    margin-top:0 !important;
    
}
.login-container {
    display: flex;
    height: 100vh;
    
}
.col-div {
    flex-basis: 50%;
    background-color: #fff;
    position: relative;
 
}
#login-page {
    overflow: hidden;
}
#login-container {
    display: flex;
    height: 100vh;
}
.slideshow {
    position: relative;
    margin:0;
    padding:0;
    width: 50vw;
}
.slide {
    position: absolute;
    margin:0;
    padding:0;
    width:50vw;
    height: 100vh;
    background-repeat:no-repeat;
    background-size:cover !important;
    background-position:50% 50% !important;
 
}
h2 {
  font-family:sans-serif;
  text-align:center;
  color:#fff;

}
body, * {
    border: 0;
    margin:0;
    padding: 0;
    box-sizing: border-box;

}.col-div.bg-overlay {
    position:relative;
}
.col-div.bg-overlay::before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 255, 180, 0.75) 16%, rgba(38, 112, 212, 0.75) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}
.intro-log {
    position: absolute;
    z-index: 1;
    top: 50%;
   left: 50%;
   width: 500px;
   margin-top: -150px; /* Half the height */
   margin-left: -250px; /* Half the width */
   text-align: center;

}
.intro-log h2 {
    font-size: 36px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    background: none;
    line-height: 1.3 !important;
    margin: 20px 0;
}
.intro-log span {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    margin-bottom: 30px;
}
.intro-log img {
    width: 250px;
    margin: auto;
}
.intro-log a {
    background: #f000;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    margin: 20px auto;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: 0.3s ease-in-out all;
}
.intro-log a:hover {
    background: #fff;
    color: #2670d4;
    transition: 0.3s ease-in-out all;

}
.col-div.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-wrap {
    width: 60%;
    margin: auto;
}
.login-form {
    display: flex;
    padding: 0px;
    justify-content: center;
    width: 50%;
}
.form-wrap [type="submit"] {
    margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
    #login-container {
        display: flex;
        flex-direction: column !important;
    }
    .slide {
        width: 100vw;
        height: 50vh;
    }
    .form-wrap, .login-form {
        width: 100%;
    }
  }