.mw-header {
  border-bottom: 1px solid #d7d7d7c5;
}
.login-container {
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.input-content {
  width: 100%;
}
.form-input {
  background: #f9f9f9;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  width: 100%;
  height: 40px;
  padding-left: 15px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.input-circle {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #007cb0;
  border-radius: 50%;
}

.input-label h1 {
  color: #1c1c1b;
  font-size: 16px;
  font-family: "NimbusSans-Bold", sans-serif;
  line-height: 19px;
}

.bottom-message {
  color: #646464;
  font-size: 14px;
  font-family: "NimbusSans-Regular", sans-serif;
}

.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.show-password {
  position: absolute;
  top: 2px;
  right: 2px;
  cursor: pointer;
  height: 38px;
  border-radius: 30px;
  width: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: transparent;
}

.password {
  text-decoration: underline;
  font: normal normal normal 14px/20px;
  letter-spacing: 0px;
  color: #007cb0;
  font-size: 14px;
  font-family: "NimbusSans-Regular";
}

.login-title {
  font-size: 36px;
  color: #1364ae;
  font-family: "NimbusSans-Regular", sans-serif;
  margin-bottom: 30px;
  line-height: 40px;
  max-width: 380px;
}

.strong-title {
  font-family: "NimbusSans-Bold", sans-serif;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: #1364ae;
  border-radius: 10px;
  font-family: "NimbusSans-Bold";
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  transition: 0.3;
  text-decoration: none;
  color: #fcfcfc;
  text-transform: uppercase;
}

.login-btn:hover {
  background-color: #025bc1;
}

.bottom-message a {
  text-decoration: underline;
  color: #3e88d7;
}
.login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  /* padding: 30px; */
  width: 100%;
  min-width: 420px;
  gap: 20px;
}

@media (max-width: 1000px) {
  .login-container {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    height: unset;
    padding-bottom: 30px;
  }

  .login-section {
    margin: 15px;
  }

  .login-btn {
    width: 100%;
    height: 35px;
  }

  .form-input {
    width: 100%;
  }

  .login-title {
    font-size: 28px;
  }
}

.success-msg-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success-msg-container h3 {
  color: green;
  font-family: "Poppins-medium";
  margin: 28px 0px;
  font-size: 1.3em;
}

.go-to-login {
  color: #007cb0;
  pointer-events: all !important;
  margin-top: 15px;
  display: block;
}
@media (max-width: 470px) {
  .login-form {
    min-width: 300px;
  }
}
