main {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-form1 {
  padding: 20px;
  background-color: rgb(238, 255, 238);
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
}

.demo-form1 input::placeholder,
.demo-form1 textarea::placeholder,
.demo-form1 select::placeholder {
  opacity: 0.8;
}

.demo-form1 .input-wrap {
  padding: 10px 0;
}
.kelime {
  color: rgb(87, 87, 87);
  font-size: 13px;
}
textarea {
  outline: none;
}
.demo-form1 .input {
  background-color: #ffffff;
  outline: none;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  padding: 10px 15px;
}

.demo-form1 label.f-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.demo-form1 input[type="submit"] {
  color: #fff;
  border-color: transparent;
  background-color: lime;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 15px;
  transition: 0.3s ease all;
  cursor: pointer;
}

.demo-form1 input[type="submit"]:hover {
  background-color: rgb(0, 163, 0);
}
.demo-form1 input[type="reset"] {
  color: #fff;
  border-color: transparent;
  background-color: #0f6292;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  padding: 8px 15px;
  transition: 0.3s ease all;
  cursor: pointer;
}

.demo-form1 input[type="reset"]:hover {
  background-color: #003f63;
}

.demo-form1 {
  width: 90%;
}
@media screen and(max-width: 800px) {
  .demo-form1 {
    width: 90%;
  }
}
