body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../safe-cool.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffc107;
  text-align: center;
}

.intro {
  font-size: 0.95em;
  text-align: center;
  margin-bottom: 20px;
  color: #eee;
}

label {
  display: block;
  margin-top: 15px;
  font-size: 0.95em;
}

select,
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
}

input[type="submit"] {
  margin-top: 25px;
  padding: 12px 20px;
  background-color: #ffc107;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1em;
  color: black;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #ffdb4d;
}

.ps {
  margin-top: 20px;
  font-size: 0.85em;
  color: #ccc;
  text-align: center;
}

