* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 1s ease-in-out;
  background: linear-gradient(to bottom, #89cff0, #187bcd);
  background-size: cover;
  background-position: center;
<<<<<<< HEAD
=======
  background-repeat: no-repeat;
  transition: background-image 0.6s ease;
>>>>>>> 9b3016c (first commit from local project)
}

.container {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
}

input {
  padding: 10px;
  width: 70%;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  outline: none;
}

button {
  padding: 10px 20px;
  margin-left: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #ffcc00;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ffd633;
}

.message {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
<<<<<<< HEAD
}
=======
}
>>>>>>> 9b3016c (first commit from local project)
