@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #c0f0fc;
}
.new_form_wrapper {
  width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 40px 20px 15px 20px;
  border-radius: 15px;
  background-color: white;
}
.new_form_wrapper h2 {
  font-weight: 600;
  color: rgb(83, 83, 83);
  font-size: 22px;
}
.new_from_container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 73%;
}

.new_from_container input {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgb(231, 230, 230);
  background-color: rgba(245, 245, 245, 0.384);
  width: 100%;
  height: 46px;
  outline: none;
}

.label_number {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.number_lable {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding-left: 14px;
  height: 46px;
  border: 1px solid rgb(231, 230, 230);
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  gap: 0px;
}
.number_lable input {
  border: none;
  padding: 0px;
  height: 100%;
  outline: none;
}
.number_lable select {
  border: none;
  font-size: 12px;
  outline: none;
  padding: 0px;
}

.new_from_container textarea {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgb(231, 230, 230);
  background-color: rgba(245, 245, 245, 0.384);
  width: 100%;
  min-height: 46px;
  height: 46px;
  resize: vertical;
  max-height: 150px;
  outline: none;
}

.new_from_container button {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 14px;
  border-radius: 20px;
  border: none;
  background-color: #00b9e3;
  width: 100%;
  color: white;
  margin-top: 10px;
  outline: none;
}

.new_form_wrapper p {
  font-size: 10px;
  color: rgb(83, 83, 83);
}

.error_container {
  height: 12px;
  font-family: Inter;
}

.error {
  font-size: 12px;
  color: rgb(231, 13, 13);
  padding-left: 5%;
  display: none;
}
