@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

.containerSing {
  position: relative;
  max-width: 370px;
  width: 90%;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid  #FFB6F8;
  background-color: #fff;
  margin: auto;
}
.container header {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}
.container form {
  margin-top: 30px;
}
form .field {
  margin-bottom: 5px;
}
form .input-field {
  position: relative;
  height: 40px;
  width: 100%;
}
.input-field input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 8px;
  border: 1px solid #d1d1d1;
}
.invalid input {
  border-color: #d93025;
}
.input-field .show-hide {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #919191;
  cursor: pointer;
}
.field .error {
  display: flex;
  align-items: center;
  color: #d93025;
  font-size: 13px;
  display: none;
}
.invalid .error {
  display: flex;
}
.error .error-icon {
  margin-right: 6px;
  font-size: 15px;
}
.create-password .error {
  align-items: flex-start;
}
.create-password .error-icon {
  margin-top: 1px;
}
.button {
  margin: 25px 0 6px;
}
.button input {
  color: black;
  font-size: 16px;
  font-weight: 400;
  background-color:  #FFB6F8;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input:hover {
  background-color: #cf93c9;
}