body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.login-page {
  height: 100vh;
  width: 100%;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #f2f7ff;
}
.login-page .header-section {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding-top: 60px;
}
.login-page .header-section .img-wrapper img {
  height: 90px;
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.login-page .header-section .header-content {
  text-align: left;
}
.login-page .header-section .header-content p {
  margin: 0;
}
.login-page .header-section .header-content .municipality {
  font-size: 18px;
  color: #525252;
  font-weight: 500;
  margin-top: -5px;
}
.login-page .header-section .header-content .office {
  line-height: 32px;
  font-size: 22px;
  font-weight: 500;
  color: #2460b9;
}
.login-page .header-section .header-content .address {
  font-size: 14px;
  color: #ce0b17;
  font-weight: 400;
}
.login-page .login-section {
  margin: 0 auto;
  max-width: 360px;
  background: white;
  padding: 40px 30px 60px 30px;
  margin-top: 60px;
  border-radius: 5px;
  box-shadow: 2px 4px 12px #dee9f8;
}
.login-page .login-section h2 {
  font-size: 30px;
  color: #2658a4;
  font-weight: 600;
  margin-bottom: 0;
}
.login-page .login-section .subtitle {
  margin: 0;
  font-size: 14px;
  color: #7d7d7d;
  font-weight: 400;
  margin-bottom: 30px;
}
.login-page .login-section .form-group {
  text-align: left;
  margin-bottom: 20px;
}
.login-page .login-section .form-group label {
  margin-bottom: 3px;
  display: block;
}
.login-page .login-section .form-group input {
  width: 100%;
  width: -webkit-fill-available;
  padding: 14px 20px;
  border-radius: 4px;
  display: block;
  border: 1px solid #cbd9ed;
  background: #eff5ff;
}
.login-page .login-section button {
  width: 100%;
  background: #2460b9;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 15px;
  transition: all 0.2s linear;
}
.login-page .login-section button:hover {
  background: #0c418e;
  cursor: pointer;
}/*# sourceMappingURL=login.css.map */