body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
   background: linear-gradient(135deg, #fbbe74, #b36b34);  
}

.container {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

h1 {
  color: white;
  font-size: 1.8rem;
}

p {
  color: #fefefe;
  margin-bottom: 15px;
}

input {
  width: 90%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
}

button {
  width: 95%;
  padding: 10px;
  margin-top: 10px;
background: linear-gradient(90deg, #98511f, #972c60);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #8c2a6a, #e60760);
}

#result {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }
  input, button {
    font-size: 0.9rem;
  }
}
