@font-face {
  font-family: 'Karla';
  src: url('../fonts/Karla-Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/Karla-Bold.ttf');
  font-weight: bold;
}
body {
  font-family: 'Karla', sans-serif;
}
.quote-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.quote-section .blockquote .welcome{
  font-size: 30px;
  font-weight: bold;
}
.quote-section .blockquote {
  width: 100%;
  padding-left: 100px;
  color: #fff; 
}
.quote-section .blockquote .blockquote-text {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.15;
}
.quote-section .blockquote .blockquote-footer {
  font-size: 18px;
  color: #000000;
  font-weight: normal;
}
.form-section {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
/*.login-wrapper {
  max-width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 40px;
}*/
.login-wrapper {
    width: 400px;
    max-width: 100%;
    margin: auto;
    padding: 40px;
    background: #ffffffde;
    border-radius: 16px;
}
.login-wrapper .form-control {
    min-height: 55px;
    padding: 18px 25px;
    border-radius: 27.5px;
    border: solid 1px #d5dae2;
    font-size: 15px;
}
.login-wrapper .form-group {
  margin-bottom: 26px;
}
/*.login-wrapper .form-control {
  min-height: 55px;
  padding: 18px 25px;
  border-radius: 27.5px;
  border: solid 1px #d5dae2;
  font-size: 15px;
}*/
.login-wrapper .form-control::-webkit-input-placeholder {
  color: #919aa3;
}
.login-wrapper .form-control::-moz-placeholder {
  color: #919aa3;
}
.login-wrapper .form-control:-ms-input-placeholder {
  color: #919aa3;
}
.login-wrapper .form-control::-ms-input-placeholder {
  color: #919aa3;
}
.login-wrapper .form-control::placeholder {
  color: #919aa3;
}
.login-wrapper .login-btn {
  border-radius: 27.5px;
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
  padding: 18px 20px;
  height: 55px;
  line-height: 20px;
  margin-bottom: 28px;
  background-color: #26166b;
}
.login-wrapper .login-btn:hover {
  border: 1px solid #181e2e;
  color: white;
  background-color: #234257;
}
.login-wrapper .forgot-password-link {
  font-size: 14px;
  color: #919aa3;
  display: inline-block;
  margin-bottom: 10px;
}
.login-img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 26px;
}
.login-wrapper-footer-text {
  font-size: 18px;
  color: #0d2366;
  text-align: center;
}
.footer-nav {
  font-size: 14px;
  color: #919aa3;
  text-align: center;
  margin-top: auto;
}
.footer-nav a {
  color: inherit;
}
@media (max-width: 991px){
  .quote-section .blockquote {    
    padding-left: 0px;    
  }
  .quote-section .blockquote .welcome,
  .quote-section .blockquote .blockquote-text{
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 575px) {
  .quote-section {
    min-height: auto;
    padding: 24px;
    background-position: 10% 13%;
  }
  .quote-section {
    min-height: auto;
    padding: 25px 15px;
    background-position: 10% 40%;
  }
  .form-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .login-wrapper .login-btn {
    margin-bottom: 24px;
  }
  .login-wrapper .forgot-password-link {
    margin-bottom: 6px;
  }
  .login-wrapper-footer-text {
    margin-bottom: 12px;
  }
  .footer-nav {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.bgimage {
    background-image: url('../images/login-bgnew.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}