body {
  background-color: lightgray;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  margin: 120px auto;
  padding: 20px;
  max-width: 600px;
  background-color: lightgray;
  border-radius: 10px;
}

header {
  margin-bottom: 30px;
  text-align: center;
}

h1 {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.5;
  color: #272044;
}
.form-container {
  background-color: rgba(255, 255, 255, 0.656);
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
  padding: 25px 30px;
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}

.instructions {
  background-color: rgb(248, 248, 248);
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background: #272044;
  color: rgb(243, 243, 243);
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 14px;
}

.quote {
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.656);
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #885df1;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}
.quote strong {
  color: #272044;
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
  padding: auto;
}

a {
  color: #885df1;
}

.dots::after {
  content: "";
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
  0% {
    content: "..";
  }
  33% {
    content: "....";
  }
  66% {
    content: ".....";
  }
  100% {
    content: "......";
  }
}
