.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-x: hidden;
}

.auth-form .input-field {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid var(--white);
  border-radius: 30px;
  color: var(--white);
  font-size: var(--fs-auth-input);
  letter-spacing: 0.5px;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  background: transparent !important;
  background-color: transparent !important;
}

.auth-form .input-field:autofill {
  -webkit-text-fill-color: white !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
}

.auth-form .input-field::placeholder {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.auth-form .input-field:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.auth-form .input-field:-webkit-autofill,
.auth-form .input-field:-webkit-autofill:hover,
.auth-form .input-field:-webkit-autofill:focus,
.auth-form .input-field:-webkit-autofill:active {
 
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 9999s ease-in-out 0s;

  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px #407bff inset !important;
  box-shadow: 0 0 0px 1000px #407bff inset !important;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: white;
  
}

.auth-form .checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0;
}

.auth-form .checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
  background: transparent;
  aspect-ratio: 1;
  display: flex;   
  align-items: center;         
  justify-content: center;     
}

.auth-form .checkbox:checked {
  background-image: url("../svg/checkbox-tick.svg"); 
  background-size: 180%;
  background-repeat: no-repeat;
  background-position: center;
}

.auth-form .checkbox:checked::after {
  content: none;
}

.auth-form .checkbox-label {
  line-height: 1.5;
  cursor: pointer;
  color: var(--text-light);
  font-weight: 300;
}

.auth-form .submit-btn {
  font-family: "Inter", sans-serif;
  width: auto;
  align-self: flex-end;
  padding: 12px 35px;
  background:  var(--white);
  color: var(--primary-blue);
  border: none;
  border-radius: 25px;
  font-size: var(--fs-auth-input);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  text-transform: uppercase;
}

.auth-form .submit-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth-form .submit-btn:active {
  transform: translateY(0);
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper .input-field {
  width: 100%;
  padding-right: 50px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password img {
  width: 22px;
}

.toggle-password img:hover {
  opacity: 1;
}

.step-form {
  display: none;
}

.step-form.active {
  display: flex;
}





/* Profile -  Floating label container  */
 .input-group {
  position: relative;
  width: 100%;
}

.input-label {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: var(--fs-auth-input);
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
}

.input-field:focus~.input-label,
.input-field:not(:placeholder-shown)~.input-label {
  top: 0;
  left: 18px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.95);
  background: var(--primary-blue);
  /* background: rgb(41 97 231); */
  padding: 0 6px;
  border-radius: 4px;
}

.password-wrapper .input-label {
  z-index: 1;
}

.password-wrapper.disabled .input-label {
  color: rgba(255, 255, 255, 0.7);
}




/* Error message Optional */
.error-msg {
  display: block;
  font-size: var(--fs-client-input);
  color: var(--text-error);
  margin-top: -8px;
  margin-bottom: 5px;
  padding-left: 8px;
}

.input-field:disabled {
  opacity: 0.7;
  color: var(--text-light) !important;
  cursor: not-allowed;
}

