#recoverDetailsForm,
#register,
#passwordResetForm,
#register,
#callbackForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0rem;
  gap: 1rem;

  width: 100%;
  height: auto;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0rem;
  gap: 0.438rem;

  width: 100%;
  height: 4.938rem;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;

  width: 100%;
  height: 1.313rem;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.label-content {
  width: auto;
  height: 1.313rem;

  font-weight: 400;
  font-size: 0.9rem;
  line-height: 150%;
  display: flex;
  align-items: center;

  color: #334155;

  flex: none;
  order: 1;
  flex-grow: 0;
}

.input {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0rem;
  isolation: isolate;

  width: 100%;
  height: 3.188rem;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;

	transition: 0.6s;
  outline: 0.3rem solid rgba(0, 0, 0, 0);
  box-shadow: 0rem 0.06rem 0.13rem rgba(18, 18, 23, 0.05);
  border-radius: 0.4rem;
}

.input:hover {
  outline: 0.3rem solid rgba(0, 0, 0, 0.1);
}

.input:focus-within:hover,
.input:hover:has(.input-content:not(:placeholder-shown)) {
  outline: 0.3rem solid #ECFDF5;
}

.input-content {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 130%;
  display: flex;
  align-items: center;

  color: #64748B !important;

  box-sizing: border-box;

  padding: 0.4rem;
  padding-left: 0.656rem;

  width: 100%;
  height: 3.188rem;

  background: #FFFFFF;
  border: 0.063rem solid #CBD5E1;
  outline: 0.063rem solid #CBD5E1;
  border-radius: 0.4rem;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  z-index: 1;
}

.input-content:hover {
  border: 0.063rem solid #94A3B8;
  outline: 0.063rem solid #94A3B8;
}

.input-content:focus,
.input-content:not(:placeholder-shown),
.input-content:not(:placeholder-shown):hover,
.input-content:not(:placeholder-shown):focus {
  border: 0.063rem solid #10B981;
  outline: 0.063rem solid #10B981;
}

.split-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  gap: 1rem;

  width: auto;
  height: auto;

  flex: none;
  order: 4;
  flex-grow: 0;
}

.split-container .input-container {
  width: 47.9%;
}