.box {
  max-width: 400px;
  width: 90%;
  margin: 100px auto;
  padding: 40px;
  background-color: #6a1b1a;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: white;
}

.box h2 {
  text-align: center;
  margin-bottom: 10px;
}

.box p {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.box label {
  display: block;
  margin-top: 15px;
  margin-bottom: 6px;
  font-size: 14px;
}

.box input,
.box select {
  height: 40px;
  width: 100%;
  background-color: #872020;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  color: white;
  padding-left: 10px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.box input:focus,
.box select:focus {
  border-color: #ffc107;
  outline: none;
}

.box button {
  width: 100%;
  height: 45px;
  background-color: #ffc107;
  margin-top: 25px;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.box button:hover {
  background-color: #e0a800;
}

.box a {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
}

.box a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .box {
    padding: 30px 20px;
    margin-top: 60px;
  }
}
