body {
  background-color: #d9e5f380;
  font-family: "Lato";
  box-sizing: border-box;
}

.login-page {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.login-page div.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}

.login-logo {
  width: 100px;
  height: 100px;

  border-radius: 50%;
  background-color: white;
  padding: 5px;
}
.login-card {       
  background:#fff;
  padding: 20px 15px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
}

.login-header {
  font-size: 25px;
  font-weight: 700;
  color: #ff6600 !important;
  margin-top: 10px;
  /* text-transform: uppercase; */
}
.home-link {
  text-align: center;
  text-decoration: none;
}

.home-link:hover {
  text-decoration: none;
}

.login-page h3,
.login-page h5 {
  color: #143258;
  font-family: "Montserrat";
  font-weight: 600;
}

.err {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 315px;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: #d3000056;
}

.close-err {
  font-size: 18px !important;
  cursor: pointer;
}

.forgot-pwd {
  font-size: 13px;
  line-height: 5px;
  margin-left: 2px;
}

.login-page input {
  width: 320px;
  margin-bottom: 6px;
}

input:focus {
  outline: none !important;
  border-color: #ff6600 !important;
  box-shadow: 0 0 10px #ff6600 !important;
}
#password {
  margin-bottom: 0;
}

.login-page input[type="submit"] {
  color: #fff;
  cursor: pointer;
  margin-top: 14px;
  background-color: #ff6600;
}
.login-page input[type="submit"]:hover {
  background-color: rgb(245, 73, 38);
}
.login-page input::placeholder {
  font-size: 14px;
}

.show-password {
  position: relative;
  top: -30px;
  right: -290px;
}
/*Media Queries for tab <576px breakpoint*/

@media screen and (max-width: 576px) {
  .login-logo {
    width: 100px;
    height: 100px;
  }

  .login-page h3 {
    font-size: 20px;
  }
  .login-page h5 {
    font-size: 18px;
  }
  .err {
    width: 285px;
    padding: 3px 10px;
    font-size: 13px;
  }
  .close-err {
    font-size: 17px !important;
  }
  .login-page input {
    width: 285px;
  }
  
.show-password {
  position: relative;
  top: -30px;
  right: -258px;
}
}
