body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: aliceblue;
  font-family: Arial, sans-serif;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

h3 {
  margin-top: 20px;
  margin-bottom: 5px;
  color: #555;
}

div {
  display: flex;
  align-items: center;
}

label {
  font-size: 18px;
  margin-right: 10px;
}

input {
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 150px;
  margin-right: 10px;
  outline: none;
  transition: 0.2s;
}

input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

button {
  border-radius: 8px;
  padding: 8px 16px;
  border: none;
  background-color: #4a90e2;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background-color: #357abd;
}

p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
