body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  margin: 0;
  padding: 20px;
  background-color: #f9f9f9; /* чуть мягче, чем #FBFBFB */
  color: #0f0f0f;
  font-family: "Roboto", system-ui, sans-serif; /* более надёжный fallback */
  line-height: 1.5;
}

.forma {
  background-color: #BCABAE;
  border-radius: 24px; /* чуть мягче, чем 30px — выглядит современнее */
  padding: 48px; /* чуть больше "воздуха" внутри */
  width: 100%;
  max-width: 520px; /* чуть шире — комфортнее для текста */
  box-sizing: border-box;
  box-shadow: 0 28px 60px -10px rgba(0, 0, 0, 0.28); /* тень с поджатием снизу — объёмнее */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forma:hover {
  transform: translateY(-4px); /* лёгкий "подъём" при наведении */
  box-shadow: 0 32px 70px -8px rgba(0, 0, 0, 0.32);
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

label {
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.6rem;
  color: #0f0f0f;
}

input,
textarea {
  font-size: 1.15rem;
  padding: 0.85rem 1rem;
  width: 100%;
  border: 1px solid #a89e9e;
  border-radius: 14px;
  background-color: #ffffff; /* чистый белый фон — лучше контраст */
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Фокус на полях — аккуратная подсветка */
input:focus,
textarea:focus {
  outline: none;
  border-color: #8a7c7c;
  box-shadow: 0 0 0 3px rgba(139, 124, 124, 0.15);
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

button {
  background: #716969;
  color: #fff;
  border: none;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  max-width: 240px;
}

button:hover {
  background: #5f5656;
  transform: scale(1.03);
}

button:active {
  transform: scale(0.99);
}

.button {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #716969;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.back-button:hover {
  background: #5f5656;
  transform: scale(1.03);
}

.back-button:active {
  transform: scale(0.99);
}