* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
  background: radial-gradient(
      circle at 10% 40%,
      rgba(0, 0, 0, 0.18) 0 8%,
      transparent 9%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(255, 255, 255, 0.08) 0 6%,
      transparent 7%
    ),
    radial-gradient(
      circle at 95% 75%,
      rgba(255, 255, 255, 0.08) 0 8%,
      transparent 9%
    ),
    radial-gradient(circle at 15% 90%, rgba(0, 0, 0, 0.22) 0 7%, transparent 8%),
    linear-gradient(180deg, #5c3c2d, #241815);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 4px;
}

.logo small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
}

.subtitle {
  letter-spacing: 5px;
  color: #c8a77d;
  font-size: 13px;
  margin-top: 25px;
  text-transform: uppercase;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 12px 0 18px;
}

.description {
  color: #d5cbc4;
  width: 620px;
  max-width: 100%;
  margin: auto;
  line-height: 1.8;
}

.address {
  margin-top: 25px;
  margin-bottom: 35px;
  color: #d0c6c0;
  font-size: 14px;
}

.form-box {
  background: #f3efe9;
  width: 430px;
  max-width: 100%;
  margin: auto;
  border-radius: 20px;
  padding: 28px;
  color: #222;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.row {
  display: flex;
  gap: 15px;
}

.field {
  flex: 1;
  text-align: left;
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0 15px;
  font-size: 15px;
  outline: none;
  transition: 0.2s;
}

input:focus,
select:focus {
  border-color: #b16e42;
}

button {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 10px;
  margin-top: 5px;
  background: #b77747;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #9f643a;
}

.footer {
  margin-top: 30px;
  color: #cfc5be;
  font-size: 12px;
  letter-spacing: 2px;
}

.footer strong {
  color: #dcb27f;
}

@media (max-width: 700px) {
  h1 {
    font-size: 32px;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  .form-box {
    padding: 20px;
  }
}
