body {
  height: 80vh;
  background-image: url(./assets/pexels-pixabay-268883.jpg);
  font-family: "Times New Roman", Times, serif;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #111111;
  width: 25%;
  border-radius: 5px;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111111;
  border-radius: 5px;
  color: magenta;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  width: 400px;
  background-color: rgba(255, 255, 255, 0.897);
  border-radius: 12px;

  padding: 20px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.message {
  color: #a3a3a3;
  font-size: 14px;
  margin-top: 4px;
  text-align: center;
}

.inputs {
  margin-top: 10px;
}

.inputs input {
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.678);
  margin: 0 10px;
}

.inputs input:focus {
  border-bottom: 1.5px solid royalblue;
  outline: none;
}

.btn {
  margin-top: 34px;
  padding: 12px 16px;
  border: none;
  background-color: royalblue;
  color: white;
  cursor: pointer;
  align-self: end;
  border-radius: 5px;

  &:hover {
    background-color: rgb(27, 51, 122);
    color: whitesmoke;
    padding: 13px 17px;
  }
}
