* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

#wrapper {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(to right, #74ebd5, #acb6e5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box {
  padding: 30px;
  border-radius: 10px;
  background: #112a46;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.head {
  font-size: 32px;
  margin-bottom: 20px;
}

.input {
  height: 40px;
  width: 250px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.btn {
  padding: 10px 20px;
  background: #811818;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a91f1f;
}

.text {
  margin-top: 15px;
  font-size: 20px;
  min-height: 30px;
}

.attempts {
  margin-top: 10px;
  font-size: 16px;
  color: #ddd;
}

.hidden {
  display: none;
}
