body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  background: black;
}

.box {
  background: rgb(224, 216, 216);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

input {
  padding: 10px;
  width: 250px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: red;
  color: white;
  margin: 5px;
  transition: background 0.3s;
}
button:hover,
a:hover {
  background: green;
}

a {
  display: none;
  background: #ff9800;
  color: white;
  padding: 7px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

img {
  margin-top: 15px;
}
