* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: #3a2a20;
  background-size: 110%;
  background: linear-gradient(130deg, #FFFBDE 35%, #F8C8D8 35%);
}


.container form {
  width: 670px;
  height: 600px;
  display: flex;
  justify-content: center;
  border-radius: 15px;
  background: rgb(0 0 0 / 0.1);
  backdrop-filter: blur(30px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.container form h1 {
  color: white;
  font-weight: 700;
  line-height: 2;
  margin-top: 20px;
  width: 500px;
  text-align: center;
}

.container form input {
  width: 300px;
  height: 50px;
  padding-left: 10px;
  outline: none;
  border: none;
  font-size: 20px;
  margin-bottom: 10px;
  background: none;
  border-bottom: 2px solid #fff;
  color: #fff;
}

.container form input::placeholder {
  color: #fff;
}

.container form #lastName,
.container form #mobile {
  margin-left: 20px;
}

.container form #request {
  color: #fff;
  font-weight: 300;
  width: 620px;
  margin-top: 20px;
}

.container form textarea {
  background: none;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: 200;
  font-size: 20px;
  padding: 10px;
  outline: none;
  width: 95%;
  height: 90px;
  resize: vertical;
}

.container form h4 {
  font-size: 20px;
}

.container form #button {
  border: none;
  background: #fff;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 24px;
  color: #000;
  width: 200px;
  height: 60px;
  padding: 0;
  margin-bottom: 30px;
  transition: 0.3s;
}

.container form #button:hover {
  background: #000;
  color: #fff;
  transition: .5s ease-in-out;
}

@media (max-width: 768px) {
  .container form {
    width: 100%;
    height: auto;
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }

  .container form input,
  .container form #request {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .container form h1 {
    width: 100%;
    font-size: 24px;
  }

  .container form #button {
    width: 100%;
  }
}