body {
  background-color: #2d2d2d;
  color: white;
  font-family: 'Roboto', sans-serif;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  background-color: #4c4c4c;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

label {
  font-size: 18px;
  margin-bottom: 5px;
}

input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #696969;
  color: white;
}

button[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ffa500;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #ff9100;
}

div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 5px;
}
