body {
  display: flex;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
}
.wrapper-handdrawn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 80px;
  padding: 60px 40px;
  border: 16px solid #a58e37;
  border-radius: 25px;
  width: 90%;
  max-width: 650px;
  min-height: 460px;
  box-sizing: border-box;
  background-color: #78E9A0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
form {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -10px;
  padding: 40px 35px 70px 35px;
  gap: 25px;
  border: 2px solid black;
  border-radius: 8px;
  width: 100%;
  max-width: 460px;
  height: 380px;
  box-sizing: border-box;
  z-index: 2;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
form div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
form span {
  font-weight: bold;
  text-align: left;
  width: auto;
  white-space: normal;
  box-sizing: border-box;
}
form input {
  padding: 10px;
  border: 2px solid black;
  border-radius: 3px; 
  width: 100%;
  box-sizing: border-box;
  font-size: 15px;
  background: #fff;
}
.registration_button {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: block;
  border: 2px solid #000;
  border-radius: 4px;
  width: 120px;
  height: 40px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.2s;
}
.registration_button:hover {
  background-color: #f2f2f2;
}


.form-title {
  display: block;
  margin-top: -25px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.return-link {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: block;
  text-decoration: none;
  padding: 6px 0;
  border: 2px solid #000;
  border-radius: 4px;
  width: 40%;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background-color: #d9d9d9;
  transition: background-color 0.2s;
}

.return-link:hover {
  background-color: #c6c6c6;
}
@media (max-width: 480px) {
  .wrapper-handdrawn {
    margin-top: 40px;
    padding: 25px 15px 45px 15px;
    border-width: 10px;
    max-width: 95%;
    min-height: 400px;
  }
  .form-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
  }
  form {
    margin-top: 0;
    padding: 25px 20px 65px 20px;
    gap: 18px;
    max-width: 100%;
    height: auto;
  }
  form span {
    font-size: 14px;
  }
  form input {
    padding: 8px;
    font-size: 14px;
  }
  .registration_button {
    width: 100px;
    height: 36px;
    font-size: 14px;
  }
  .return-link {
    width: 70%;
    padding: 8px 0;
    bottom: 10px;
    font-size: 14px;
  }
}
