.envelo-footer {
  font-size: 16px;
  color: var(--on-background) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 16px 32px;
  row-gap: 16px;
}

.envelo-footer-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  column-gap: 16px;
  margin: 0 !important;
}

.envelo-footer-links-list li {
  list-style-type: none;
  display: inline-block;
  color: var(--on-background);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.envelo-footer-links-list li a {
  color: var(--on-background);
  text-decoration: none;
  font-size: 14px;
  text-align: center;
}

.create-account-wrapper-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 786px) {
  .envelo-footer {
    flex-direction: row;
    padding: 16px 108px;
  }

  .envelo-footer-links-list {
    flex-wrap: nowrap;
  }
}

.relative {
  position: relative;
  width: 100%;
}

.floating-input {
  block-size: 100%;
  padding: 1.25rem 0.625rem 0.5rem;
  width: 100%;
  font-size: 0.875rem;
  color: var(--on-surface-container);
  background-color: var(--surface-container); 
  border: 0;
  border-bottom: 2px solid var(--outline);
  appearance: none;
  outline: none;
}

.dark .floating-input {
  color: var(--on-surface-container);
  background-color: var(--surface-container); 
  border-bottom: var(--outline);
}

.floating-input:focus {
  border-bottom-color: var(--primary);
}

.dark .floating-input:focus {
  border-bottom-color: var(--primary) ;
}

.floating-label {
  position: absolute;
  color: var(--on-surface-container);
  top: 1.25rem;
  left: 0.625rem;
  transform-origin: 0 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.dark .floating-label {
  color: #9ca3af; 
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-input:-webkit-autofill ~ .floating-label 
{
  transform: translateY(-1.25rem) scale(0.75);
  color: var(--primary);
}

.floating-input:placeholder-shown ~ .floating-label {
  transform: scale(1) translateY(1.25);
}

.rtl .floating-input:focus ~ .floating-label {
  transform: scale(0.75) translateX(25%);
  left: auto;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--surface-container) inset;
  -webkit-text-fill-color: var(--on-surface);

}
.floating-input:-webkit-autofill ~ .floating-label 
{
  transform: translateY(-1.25rem) scale(0.75);
  color: var(--primary);
}