@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
body {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat";
}
.main-background {
  background: #dceef8;
  /* height: -webkit-fill-available; */
  height: 100%;
  padding: 0px 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-outer {
  max-width: 677px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px;
  /* border: 2px solid #c6e2f1; */
  padding: 50px 20px;
  border-radius: 6px;
}
.login-outer img {
  margin-bottom: 30px;
}
.login-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  color: #000;
  margin: 0px 0px 30px;
  text-align: center;
}
.login-button a {
  background: #58A3FC;
  border: none;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 10px 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  min-width: 77px;
  margin: 0px 14px;
  cursor: pointer;
  text-decoration: none;
}
.login-button a:hover {
  filter: brightness(0.9);
}
.login-button a.disabled {
  pointer-events: none;
  filter: grayscale(1);
}
@media only screen and (max-width: 991px) {
  .login-outer {
    position: relative;
    z-index: 9;
  }
  .login-title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .main-background {
    padding: 0px 15px;
  }
  .mobile-wave {
    background-position: center -60px;
  }
}
