body {
  background: #a7d8de;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  margin: 120px auto;
  max-width: 600px;
  padding: 0 20px;
}

header {
  margin-bottom: 30px;
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}

a {
  color: #885df1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  align-items: center;
}

.instructions {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 20px;
  color: #272044;
  border: 1px solid rgba(39, 33, 66, 0.5);
  border-radius: 50px;
  background-color: white;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

.submit-button {
  width: 150px;
  padding: 14px 24px;
  font-size: 16px;
  color: white;
  background: #885df1;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #7a4ee0;
}

.affirmation {
  display: none;
  width: 100%;
  max-width: 80%;
  margin: 20px auto 0 auto;
  padding: 20px;
  font-size: 20px;
  line-height: 2;
  background-color: #fff;
  border-left: 3px solid #885df1;
  border-radius: 0 8px 8px 0;
  box-shadow: 0px 4px 30px rgba(39, 33, 66, 0.03);
  clear: both;
  font-weight: 500;
}

.affirmation.show {
  display: block;
}

#suggestion-container {
  font-size: 14px;
  color: rgba(39, 33, 66, 0.5);
  margin-top: 5px;
  text-align: left;
  cursor: pointer;
}

@media (max-width: 768px) {
  .container {
    margin: 60px auto;
    padding: 0 15px;
  }

  .affirmation {
    max-width: 100%;
  }

  .instructions {
    width: 100%;
  }

  .submit-button {
    width: 100%;
  }
}
