/* button styles start */
.btn {
  border-radius: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%; /* 22.96px */
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 165px;
}

.btn-pri {
  background: var(--accent-color);
  color: var(--forground-white-pri);
}

.btn-outline {
  background-color: transparent;
  color: var(--forground-dark-pri);
  border: 1px solid var(--border-color);
}
/* button styles end */

/* input styles start */
.input-float-wrapper {
  position: relative;
  z-index: 0;
  margin-bottom: 1.25rem;
  width: 100%;
}

.input-float-wrapper .input-float {
  display: block;
  padding: 0.625rem 0;
  width: 100%;
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
  color: var(--forground-dark-pri);
  background-color: transparent;
  border-radius: 0;
  border-width: 0px;
  border-bottom-width: 1px;
  border-color: #dcdbdd;
  transition: var(--base-transition);
  outline: none;
  box-shadow: none;
  margin: 0;
  appearance: none;
}

.input-float-wrapper .input-float:focus {
  border-bottom-color: var(--forground-dark-sec);
}

.input-float-wrapper .input-float-label {
  position: absolute;
  top: 0.75rem;
  left: 0;
  z-index: -10;
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
  color: var(--forground-dark-sec);
  transform-origin: 0 0;
  transform: translateX(0) scale(1);
  transition: var(--base-transition);
}

.input-float-wrapper .input-float:focus ~ .input-float-label {
  inset-inline-start: 0px;
  font-size: 0.75rem;
  line-height: 1rem;
  transform: translateY(-1.5rem);
}

.input-float-wrapper .input-float:focus ~ .input-float-label,
.input-float-wrapper .input-float:not(:placeholder-shown) ~ .input-float-label {
  inset-inline-start: 0px;
  font-size: 0.75rem;
  line-height: 1rem;
  transform: translateY(-1.5rem);
}

.input-float-wrapper p.des {
  color: var(--forground-dark-sec);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}

/* input styles end */

/* password input styles start */
.password-wrapper {
  position: relative;
}

.password-wrapper .password-show-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  opacity: 0.5;
}

.password-wrapper .password-show-btn.enable {
  opacity: 1;
}
/* password input styles end */

/* site logo styles start */
.site-logo {
  display: inline-block;
  width: 215px;
  height: 75px;
}
.site-logo img {
  width: 100%;
  height: 100%;
}
/* site logo styles end */

/* separator styles start */
.separator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forground-dark-sec);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; /* 22.96px */
}

.separator .bar {
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}
/* separator styles end */

/* check box styles start */
.checkbox {
  display: flex;
  gap: 12px;
}

.checkbox label {
  color: var(--forground-dark-sec);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}

.checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
/* check box styles end */
