@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #fef6e4;
  color: #111;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 10px solid #ff595e;
  padding-left: 12px;
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 6px;
  color: #222;
}

input,
select {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #fff;
  border: 3px solid #111;
  margin-bottom: 16px;
  font-family: inherit;
  color: #000;
}

button {
  background-color: #1982c4;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #005f99;
}

.result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  padding-top: 12px;
  border-top: 4px dashed #111;
  color: #111;
}

.container {
  max-width: 500px;
  width: 100%;
  background: #ffffff;
  border: 6px solid #111;
  padding: 32px;
}

/* Responsive */
@media (max-width: 500px) {
  body {
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }

  .container {
    border-width: 4px;
    padding: 24px;
  }
}
