.form-group {
  width: 100%;
}
.form-group label {
  display: block;
  margin-bottom: 12px;
}

.form-header {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 0;
}

.form-content {
  padding: 0 48px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.form-footer {
  padding: 0 48px 48px 48px;
  border-radius: 0;
}
.form-footer .footer-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form-footer .footer-options > *:only-child {
  margin-left: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}

.password-form-control {
  display: flex;
  margin: 0 0 17.5px 0;
}
.password-form-control .form-control {
  margin: 0 !important;
}
.password-form-control #togglePassword {
  margin: auto 0 auto -30px;
  cursor: pointer;
  color: #737D8C;
}

.title {
  margin: 0;
  color: #2E3238;
  font-size: 24px;
  font-style: normal;
  font-weight: 590;
  line-height: 30px; /* 125% */
}

.sub-title {
  margin: 0;
  color: #737D8C;
  font-size: 14px;
  font-style: normal;
  font-weight: 510;
  line-height: 21px; /* 150% */
}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 0px;
  margin: auto;
  height: 100%;
  pointer-events: all;
  color: #2E3238;
}

.form-control {
  margin: 0;
  height: 44px;
  border: 1px solid #C4C9CF;
  padding-left: 16px;
}
.form-control:focus, .form-control:focus-visible {
  border: 1px solid #06A9BA;
  outline: none;
}
.form-control:-webkit-autofill, .form-control:-webkit-autofill:focus {
  background-color: white;
}
.form-control.has-error {
  border: 1px solid #f5222d;
}

.form-control, .btn-block {
  height: 44px;
  width: 100%;
  border-radius: 6px !important;
}

.btn-block {
  margin-bottom: 16px;
}

.inputLabel {
  color: #2E3238;
  font-size: 14px;
  font-style: normal;
  font-weight: 590;
  line-height: 17.5px; /* 125% */
}

.validation-summary-errors {
  margin: 0 0 17.5px 0;
}
.validation-summary-errors > ul {
  padding-left: 0;
  margin: 0;
  color: #f5222d;
  font-size: 13px;
}
.validation-summary-errors > ul > li {
  font-size: 13px;
  color: #f5222d;
  list-style: none;
}
.validation-summary-errors:empty {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  width: 100%;
}

input[type=checkbox].ib-check {
  height: fit-content;
  transform: scale(1.2);
  accent-color: #1CD0E3;
}

.no-top-margin {
  margin-top: 0 !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.password-check {
  font-weight: 400;
  display: flex;
  align-items: baseline;
  margin-right: 8px;
}
.password-check.not-valid * {
  color: #737D8C !important;
  fill: #737D8C !important;
  margin-right: 8px;
}
.password-check.valid * {
  color: #5AA019 !important;
  fill: #5AA019 !important;
  margin-right: 8px;
}

#VerifiedPassword.not-valid {
  border: 1px solid #FF3838 !important;
}
