

#ChangeNumber {
  transition: color 1s ease;
  color: #ffc451;
}


input[type="email"],
input[type="password"],
button {
  margin: 10px;
  padding: 8px 15px;
  border: 0;
  border-radius: 5px;
  outline: none;
  font-size: 20px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
}

button {
  cursor: pointer;
  background-color: #ffc451;
  /* Initial button color */
  color: #fff;
  transition: background-color 1s ease;
  /* Smooth transition */
}

@media (max-width: 768px) {
  .rectangle {
      width: 50%;
      /* Adjust width for mobile devices */
      right: 10%;
      /* Adjust margin for mobile devices */
  }

  .logo {
      width: 50%;
      /* Match width with the upper rectangle on mobile devices */
      right: 10%;
      /* Match width with the upper rectangle on mobile devices */
  }
}

#otpContainer {
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
  width: 80%;
}

.otp-input {
  width: 12%;
  padding: 8px 5px;
  margin: 1px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 20px;
  text-align: center;
}

/* Adjust the input size for smaller screens */
@media (max-width: 768px) {
  .otp-input {
      width: 18%;
  }
}

/* Hide the increment and decrement buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}