.login-outer-container{
  display:flex;
  flex-direction: row;
  align-items: center;
  width:100%;
  height: 100%;
  background: #DEECFF;
  justify-content: space-around;
  flex-wrap: wrap;
  overflow: auto;
}

.login-inner-container{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

@media only screen and (max-height: 790px){
  .login-info-logo{
    height: 140px !important;
  }
  .login-field-container{
    height: 375px !important;
  }
}

.login-info-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px 20px 30px 20px;
}

.login-info-logo{
  width: 235px;
  height: 190px;
}

.login-info-label{
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  height: 24px;
  color: #0B1F41;
  margin-top: 15px;
}

.login-copyright-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}

.login-copyright-icon{
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.login-label{
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  color: #0B1F41;
}

.login-field-container{
  margin: 0px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  height: 420px;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.login-errormessage-container{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 80px;
  width: 100%;
  overflow: auto;
  margin: 10px;
}

.login-errormessage{
  font-size: 14px;
  color: #ED2124;
  font-weight: 500;
  white-space: pre-wrap;
}

.login-field-inner-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
}

.login-company-label{
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  color: #041E42;
  text-wrap-style: pretty;
}

.login-button{
  cursor: pointer;
  border-radius: 5px;
  width: 300px;
  background:#97E3C0;
  color: #041E42;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  height: 35px;
  box-shadow: 0px 3px 6px#00000029;
}

.login-button:hover {
  background: #a3f5cf;
}

.login-button:disabled {
  background-color: #53565a91;
}

.login-button:disabled:hover {
  color: #000000;
  border-color: #989898;
}

.login-field{
  border: 1px solid #041E42;
  border-radius: 5px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  background: none;
  color: #041E42;
  margin: 15px 2px 2px 2px;
  padding: 5px;
  width: 300px;
  height: 35px;
}

.login-label-container{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 10px;
  padding-right: 15px;
  height: 80px;
  width: 100%;
}

.login-field-img{
  width:18px;
  height:18px;
  padding: 2;
}

.login-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #041E42;
}
.login-field::-moz-placeholder { /* Firefox 19+ */
  color: #041E42;
}
.login-field:-ms-input-placeholder { /* IE 10+ */
  color: #041E42;
}
.login-field:-moz-placeholder { /* Firefox 18- */
  color: #041E42;
}

.login-change-password-link {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  color: #041E42;
  text-decoration: none;
  text-align: end;
  margin-top: 5px;
  width: fit-content;
  align-self: end;
}