/**********************************************************
        RadioMart password recovery
**********************************************************/
body#password .rm-password-shell {
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(30, 57, 92, .10);
  box-sizing: border-box;
  display: grid;
  font-family: Arial, Helvetica, sans-serif;
  grid-template-columns: 394px minmax(0, 1fr);
  margin: 20px auto 34px;
  max-width: 895px;
  min-height: 510px;
  overflow: hidden;
  width: 100%;
}

body#password .rm-password-visual {
  align-items: center;
  align-self: stretch;
  border-right: 1px solid #f2f4f8;
  display: flex;
  justify-content: center;
  min-width: 0;
}

body#password .rm-password-visual img {
  display: block;
  height: auto;
  max-width: calc(100% - 36px);
  transform: translate(5px, 14px);
  width: 355px;
}

body#password .rm-password-panel {
  box-sizing: border-box;
  min-width: 0;
  padding: 55px 50px 40px 64px;
}

body#password .rm-password-title {
  border: 0;
  color: #252525;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 10px;
  padding: 0;
  text-transform: uppercase;
}

body#password .rm-password-intro {
  color: #686868;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 28px;
}

body#password .rm-password-errors:empty {
  display: none;
}

body#password .rm-password-errors .alert {
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 16px;
}

body#password .rm-password-form,
body#password .rm-password-form fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

body#password .rm-password-field {
  margin: 0;
}

body#password .rm-password-field label {
  color: #292f38;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 9px;
}

body#password .rm-password-input {
  position: relative;
}

body#password .rm-password-input > i {
  color: #7d8797;
  font-size: 18px;
  left: 17px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

body#password .rm-password-input .form-control {
  background: #fff;
  border: 1px solid #cfd7e3;
  border-radius: 6px;
  box-shadow: none;
  color: #253249;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  height: 52px;
  line-height: 20px;
  max-width: none;
  padding: 15px 16px 15px 54px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}

body#password .rm-password-input .form-control::placeholder {
  color: #8a94a5;
  opacity: 1;
}

body#password .rm-password-input .form-control:focus {
  border-color: #1267e6;
  box-shadow: 0 0 0 3px rgba(18, 103, 230, .12);
  outline: 0;
}

body#password .rm-password-submit {
  margin: 20px 0 0;
}

body#password .rm-password-submit__button {
  align-items: center;
  background: #1267e6;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  color: #fff;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  line-height: 1.2;
  padding: 0 48px 0 24px;
  position: relative;
  text-shadow: none;
  transition: background-color .15s ease, box-shadow .15s ease;
  width: 100%;
}

body#password .rm-password-submit__button > i {
  font-size: 17px;
  line-height: 1;
  position: absolute;
  right: 28px;
  top: 18px;
}

body#password .rm-password-submit__button:hover,
body#password .rm-password-submit__button:focus {
  background: #075bd4;
  box-shadow: 0 5px 14px rgba(18, 103, 230, .22);
  color: #fff;
  outline: 0;
}

body#password .rm-password-note {
  align-items: flex-start;
  color: #6f747d;
  display: flex;
  font-size: 15px;
  gap: 18px;
  line-height: 1.45;
  margin: 28px 0 27px;
}

body#password .rm-password-note > i {
  color: #7d8797;
  flex: 0 0 29px;
  font-size: 30px;
  line-height: 1;
  margin-top: -1px;
  text-align: center;
}

body#password .rm-password-back {
  align-items: center;
  background: #fff;
  border: 1px solid #b8ccec;
  border-radius: 6px;
  color: #1267e6;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 14px;
  height: 49px;
  justify-content: center;
  line-height: 1.2;
  padding: 0 18px;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  width: 100%;
}

body#password .rm-password-back > i {
  font-size: 16px;
}

body#password .rm-password-back:hover,
body#password .rm-password-back:focus {
  background: #f2f7ff;
  border-color: #1267e6;
  color: #075bd4;
  outline: 0;
  text-decoration: none;
}

body#password .rm-password-status {
  font-size: 14px;
  line-height: 1.5;
  margin: 24px 0 30px;
}

@media (max-width: 991px) {
  body#password .rm-password-shell {
    grid-template-columns: minmax(300px, 41%) minmax(0, 1fr);
  }

  body#password .rm-password-panel {
    padding: 46px 34px 36px 16px;
  }
}

@media (max-width: 767px) {
  body#password .rm-password-shell {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 14px;
    min-height: 0;
  }

  body#password .rm-password-visual {
    border-bottom: 1px solid #f2f4f8;
    border-right: 0;
    padding: 22px 18px 4px;
  }

  body#password .rm-password-visual img {
    max-width: 100%;
    transform: none;
    width: 310px;
  }

  body#password .rm-password-panel {
    padding: 24px 24px 28px;
  }

  body#password .rm-password-title {
    font-size: 26px;
  }
}

@media (max-width: 390px) {
  body#password .rm-password-shell {
    border-radius: 9px;
  }

  body#password .rm-password-visual {
    padding: 18px 14px 2px;
  }

  body#password .rm-password-visual img {
    width: 280px;
  }

  body#password .rm-password-panel {
    padding: 21px 17px 24px;
  }

  body#password .rm-password-title {
    font-size: 24px;
  }

  body#password .rm-password-intro,
  body#password .rm-password-note {
    font-size: 14px;
  }

  body#password .rm-password-note {
    gap: 13px;
  }

  body#password .rm-password-submit__button,
  body#password .rm-password-back {
    font-size: 15px;
  }
}
