@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  /* height: 100vh; */
  margin: 80px;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(214, 245, 238);
}
img {
  max-width: 100%;
}
.appointment-form {
  background-color: rgb(238, 117, 117);
}
.wrapper {
  max-width: 1100px;
  margin: auto;
}
.appointment h2 {
  text-align: center;
  margin: 30px;
  color: #451ae2;
  font-size: 30px;
}
.appointment-form form {
  padding: 40px;
  /* border: 1px solid #fffbfb; */
  border-radius: 8px;
}
.appointment-form input {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 14px;
  margin-bottom: 20px;
  border: 2px solid #451ae2;
  border-radius: 5px;
  font-size: 20px;
}
.appointment-form textarea {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  padding: 14px;
  height: 200px;
  font-size: 20px;
  margin-bottom: 20px;
}
.gender-label {
  font-size: 20px;
}
.gender {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
}
.gender input {
  width: 50px;
  height: 20px;
}
/* .form-btn {
  border: 5px solid #451ae2;
  outline: none;
} */
input.form-btn {
  border: none;
  background: #451ae2;
  color: white;
  text-transform: capitalize;
  margin-top: 20px;
}
.appointment-img img {
  /* width: 100%; */
  border-radius: 8px;
}




/* Media Query */
@media (min-width: 700px) {
  .wrapper {
    display: flex;
    /* align-items: center; */
  }
  .appointment-img img {
    height: 100%;
    object-fit: cover;
  }
  .appointment-img img {
    border-radius: 20px 0px 0px 20px;
  }
  .appointment-form {
    border-radius: 0px 20px 20px 0px;
  }
}
