.create__grid {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-left: 30px;
    padding-bottom: 15px;
    padding-right: 15px;
    background: #EFEFEF;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    min-height: 222px;
    width: 100%;
    margin-top: 27px;
}
.create__grid h3 {
    font-size: clamp(10px, 3vw, 14px);
    color: black;
}
.create__grid__form {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    gap: 5px;
}
.create__grid__form input {
    background-color: #3F8AFA;
    color: white;
    border-radius: 3px;
    width: max-content;
    max-width: 300px;
    outline: none;
    height: 20px;
    border: none;
    padding-left: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: clamp(8px, 3vw, 10px);
}
.create__grid__form input::placeholder {
    color: white;
}
.create__grid__form__checkbox {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
.toggle {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.toggle input {
  display: none;
}

.slider {
  position: relative;
  width: 46px;
  height: 24px;
  background: #D2D5DA;
  border-radius: 20px;
  transition: 0.3s;
  margin-left: 6px;
}

.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  top: 2px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle input:checked + .slider {
  background: #3F8AFA;
}

.toggle input:checked + .slider::before {
  transform: translateX(22px);
}
.create__grid__form button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(10px, 3vw, 14px);
    color: white;
    border: none;
    border-radius: 6px;
    background-color: #3BD26E;
    width: max-content;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 18px;
}
.create__grid__form button:hover {
    background-color: #35ac5d;
}
.create__grid__form textarea {
    border: 1px solid #3F8AFA;
    background-color: white;
    min-height: 112px;
    outline: none;
    padding: 11px;
    border-radius: 6px;
    max-width: 100%;
}