/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.form--control label {
  font-size: 1rem;
  color: #2c3345;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.flexBox {
  display: flex;
  align-items: center;
}
.form--control .form--item input[type='checkbox'] {
  width: 1.25rem;
  height: 1.25rem;
}
.form--control .form--item label {
  margin-bottom: 0;
  cursor: pointer;
}
.form--control .form--item input[type='checkbox'] {
  cursor: pointer;
}
.form--item.flexBox {
  margin-bottom: 0.5rem;
}
.form--item input,
.form--item select {
  font-size: 1rem;
}
.form--item input {
  height: 2.5rem;
  border: 1px solid #b8bdc9;
  padding: 0 0.625em;
  border-radius: 0.25rem;
  width: 50%;
}
.grid2 {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.grid2 input[type='text'] {
  width: 100%;
}
.form--control {
  padding: 1.5rem 0;
}
.form--item input[type='checkbox'] + label {
  padding-left: 0.5rem;
}
.form--item select {
  height: 2.5rem;
  border: 1px solid #b8bdc9;
  padding: 0 0.625em;
  border-radius: 0.25rem;
  width: 50%;
  background: #fff;
}
.innerLabel {
  margin-top: 0.5rem;
}
p {
  color: #2c3345;
  font-size: 0.938rem;
}
p a {
  color: rgb(0, 0, 238);
  text-decoration: underline;
}
.formAction {
  text-align: center;
}
.formAction .btn {
  background: #18bd5b;
  padding: 0.875rem;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 0.25rem;
  min-width: 10rem;
  display: inline-block;
  cursor: pointer;
}
.customForm {
  max-width: 42rem;
  width: 100%;
  margin: auto;
}
.customForm .formBg {
  background: #fff;
  box-shadow: 0 4px 4px rgba(87, 100, 126, 0.21);
}
.customForm .formBg .formView {
  padding: 2.5rem;
  background: #fff;
}
.formLogo {
  max-width: 34.25rem;
  width: 100%;
  margin: 2rem auto;
}
.formAction {
  border-top: 1px solid #ddd;
  padding: 3rem 0 1rem 0;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-top: 6rem;
}
.formFooter {
  background: rgba(229, 231, 242, 0.25);
  border-top: 1px solid #e5e7f2;
  padding: 0.875rem 1.25rem;
  text-align: right;
}
.formFooter a {
  display: inline-block;
  max-width: 5rem;
  width: 100%;
}
.formFooter a img {
  width: 100%;
}
.onClickText input {
  width: 100%;
}
.onClickText {
  padding: 0;
}
.innerLabel .form--item input {
  margin-bottom: 0;
}
.error {
  animation: background-fade 2s;
}

.error-navigation-message {
  color: #fff;
  background-color: #dc2626;
  font-size: 0.75em;
  margin-top: 8px;
  border-radius: 4px;
  background-size: 0.875em;
  background-position: 0.375em;
  background-repeat: no-repeat;
  display: inline-block;
  width: auto;
  padding: 0.25em 0.5em 0.25em 0.5em;
}

@keyframes background-fade {
  0% {
    background: #fd8080;
  }
  50% {
    background: #fd8080;
  }
  100% {
    background: none;
  }
}
@media screen and (max-width: 680px) {
  .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .form--item input,
  .form--item select {
    width: 100%;
    background: #fff;
  }
  .customForm .formBg .formView {
    padding: 1rem;
  }
}
