* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

body {
  width: 100%;
  background-color: peachpuff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.adoption-form {
  max-width: 500px;
  width: 100%;
  background: rgba(255, 127, 80, 0.301);
  padding: 15px 25px;
  border-radius: 10px;
}

.adoption-form h1 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}

.adoption-form p {
  font-weight: 500;
  margin-top: 15px;
  width: 100%;
}
.input-box input {
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid;

  font-size: 16px;
  border-bottom-width: 3px;
}

#types {
  height: 44px;
  width: 100%;
  border-radius: 10px;
}

#box {
  border-radius: 10px;
}

button {
  width: 100%;
  padding: 5px 50px;
  background: rgb(228, 73, 17);
  font-size: large;
  margin-top: 15px;
  border-radius: 10px;
}
