#msr_wrapper {
  /* max-width: 400px; */
  margin: 30px auto;
  padding: 20px;
  border-radius: 10px;
}
#msr_wrapper input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
}
#msr_wrapper button {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  /*padding: 10px;*/
  border: none;
  border-radius: 100px;
  cursor: pointer;
}
#msr_wrapper .msr_msg {
  margin-top: 10px;
  color: red;
  font-size: 14px;
}
.msr-container {
  max-width: 760px;
  margin: 30px auto;
  font-family: Arial, Helvetica, sans-serif;
}
.msr-steps {
  display: flex;
  justify-content: space-between;

  margin-bottom: 20px;
}
.msr-step-content {
  border: 0;
  padding: 0 10px;
}
.msr-title {
  margin-bottom: 12px;
  text-align: center;
  color: #072f64;
}
.msr-form-flex {
  display: flex;
  gap: 15px;
}
.msr-container input[type="text"],
.msr-container input[type="email"],
.msr-container input[type="password"],
.msr-container select {
  width: 100%;
  padding: 12px;
  border: 2px solid #173a65;
  border-radius: 2px;
  margin-bottom: 12px;
  box-sizing: border-box;
  height: 54px;
}
.msr-container label {
  display: block;
  margin-bottom: 0px;
  color: #072f64;
}
.msr-form-box {
  margin-bottom:8px;
}
.msr-container .msr-radio label {
  margin-right: 12px;
}
.msr-container button {
  display: inline-block;
  background: #072f64;
  color: #fff;
  /*padding: 12px 18px;*/
  border-radius: 28px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}
.msr_msg {
  color: #b00020;
  margin-top: 8px;
}
.msr-note {
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 6px;
  margin-bottom: 8px;
}
.required {
  color: #b000b0;
}
#msr_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #001f54;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.msr_timer {
  margin-top: 5px;
  color: #444;
  font-size: 14px;
}
#msr_resend_wrap {
  margin-top: 4px;
  font-size: 14px;
  color: #555;
}
#msr_resend_wrap a {
  color: #001f54;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.msr_timer {
  margin-top: 6px;
  color: #333;
  font-size: 14px;
}
#msr_resend_wrap {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
}
#msr_resend_wrap a {
  color: #001f54;
  font-weight: 600;
  text-decoration: underline;
}
.msr-loading {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  justify-content: center;
  align-items: center;
}
.msr-loading .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.msr-step-indicator {
  display: inline-block;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: #fff;
  line-height: 30px;
  text-align: center;
  transition: 0.3s;
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--primary-color);
  position: relative;
  z-index: 10;
}
.msr-step-indicator:after {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 105%;
  height: 2px;
  left: 100%;
  transition: all 0.5s;
  z-index: 11;
}
.msr-step-indicator::before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  height: 100%;
  width: 0;
  left: 0;
  z-index: -1;
  border-radius: 50%;
}
.msr-step-indicator:last-child:after {
  display: none;
}
.msr-step-indicator.done::before,
.msr-step-indicator.active::before {
  width: 100%;
}
.msr-step-indicator:after {
}
.msr-step-indicator.done:nth-child(1)::before,
.msr-step-indicator.active:nth-child(1)::before {
  transition-delay: 0s;
}
.msr-step-indicator.done:nth-child(2)::before,
.msr-step-indicator.active:nth-child(2)::before {
  transition-delay: 0.4s;
}
.msr-step-indicator.done:nth-child(3)::before,
.msr-step-indicator.active:nth-child(3)::before {
  transition-delay: 0.8s;
}
.msr-step-indicator.done:nth-child(4)::before,
.msr-step-indicator.active:nth-child(4)::before {
  transition-delay: 1.2s;
}

.msr-step-indicator.active,
.msr-step-indicator.done {
  color: #fff;
}

.msr-step-indicator.inactive {
  background: #ccc;
}
#msr_resend_otp {
  display: none;
}
#msr_resend_wrap + #msr_resend_otp {
  display: none;
}
.hide_password {
  position: absolute;
  right: 20px;
  top: 25px;
}

.msr-form-group {
  position: relative;
}

.msr-form-group input,
.msr-form-group select {
  height: 54px;
}
h1.header_signin {
  font-size: 36px;
  color: var(--primary-color);
  font-weight: 800;
}
.msr-login-container {
  max-width: 400px;
  margin: 0 auto;
}

.msr-login-container h1 {
  font-weight: 700;
  margin-bottom: 20px;
}

.msr-login-container input[type="email"],
.msr-login-container input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #0a1e5c;
}

.msr-login-container button {
  background: #0a1e5c;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 25px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
}

.msr-login-links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.msr-form-group.msr-login-options input#msr_stay_logged_in {
  height: auto;
}
.user_info {
  width: 350px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.user_info .user_info__inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user_info .user_info__inner .user_info--name {
  font-size: 27px;
  font-weight: 700;
  color: var(--primary-color);
}

.user_info .user-avatar img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
}
@media  only screen and (max-width: 767px)) {
.user_info .user-avatar img {
    width: 120px;
    height: 120px;
}
}