.login-header {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #434343;
  font-size: 36px;
  font-weight: bold;
}

/* Floating label container */
.form-floating-custom {
  position: relative;
}

.form-floating-custom input[type="text"],
.form-floating-custom input[type="password"] {
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 16px 16px 8px 16px;
  font-size: 14px;
  border: 1px solid #D3D3D3;
  border-radius: 14px;
  background-color: #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Hide placeholder */
.form-floating-custom input[type="text"]::placeholder,
.form-floating-custom input[type="password"]::placeholder {
  color: transparent;
}

/* Handle autofill */
.form-floating-custom input[type="text"]:-webkit-autofill + label,
.form-floating-custom input[type="password"]:-webkit-autofill + label {
  top: 0;
  font-size: 12px;
  color: #FF9A7B;
  transform: translateY(-50%);
}

.form-floating-custom input[type="text"]:focus,
.form-floating-custom input[type="text"]:focus-visible,
.form-floating-custom input[type="password"]:focus,
.form-floating-custom input[type="password"]:focus-visible {
  font-family: "Poppins", sans-serif;
  outline: none;
  border-color: #FF9A7B;
  box-shadow: none;
}

.form-floating-custom label {
  font-family: "Poppins", sans-serif;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #929292;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  padding: 0 4px;
}

.form-floating-custom input[type="text"]:not(:placeholder-shown),
.form-floating-custom input[type="password"]:not(:placeholder-shown) {
  border-color: #FF9A7B;
}

.form-floating-custom input[type="text"]:focus + label,
.form-floating-custom input[type="text"]:not(:placeholder-shown) + label,
.form-floating-custom input[type="password"]:focus + label,
.form-floating-custom input[type="password"]:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: black;
  transform: translateY(-50%);
}

input[type="text"],
input[type="password"],
select.form-control {
  font-family: "Poppins", sans-serif;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
select.form-control:focus {
  font-family: "Poppins", sans-serif;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #F1552C;
}

div label,
div input[type="text"] {
  font-family: "Poppins", sans-serif;
  color: #434343;
}

.login-button-div {
  display: flex;
  justify-content: center;
}

.login-button {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #F1552C; /* Button text color */
  background-color: #FCDDD5; /* Button background color */
  border: none; /* Remove button's border */
  border-radius: 20px; /* Rounded button corners */
  height: 40px;
  min-width: 164px;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-button:hover,
.login-button:focus {
  color: #FFFFFF;
  background-color: #F1552C;
}

/* Instruction style */
.instruction {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #929292;
  font-size: 12px;
  font-weight: 400;
}
