.logo {
  width: 130px;
  display: block;
  margin: 0 auto 24px auto;
}
body {
  font-family: Arial, sans-serif;
  background: #EFE7E1;
  color: #231D1D;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

.container {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

.subtext {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-size: 16px;
}

textarea {
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #A75D39;
}

button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #A75D39;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: .95;
}

.notice {
  background: #FFF8F4;
  border: 1px solid #E8D5C8;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
}
.button-link {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  background: #A75D39;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
}
