* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(to right, #90fff9, #1666df);
}

.form-container {
  width: 400px;
  margin: 250px auto;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-top: 0%;
  text-align: center;
  margin-bottom: 20px;
  color: rgb(62, 163, 221);
}

form label {
  display: flex;
  margin-top: 20px;
  color: rgb(104, 144, 167);
}

form input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}

form .buttons {
  padding: 10px;
  margin-top: 20px;
  width: 48%;
  border: none;
  transition: background-color 0.2s, color 0.2s;
}

form .buttons:hover {
  background-color: #289be7;
  color: white;
  cursor: pointer;
}
