body {
  background-color: #f0f9f8;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: #2e2e2e;
}

.container {
  margin: 80px auto;
  max-width: 600px;
}

h1 {
  text-align: center;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.2;
  color: #2e2e2e;
  margin-bottom: 40px;
}

.form-container {
  background-color: white;
  margin-bottom: 30px;
  border-radius: 20px;
  border: 2px solid #c6e6e3;
  box-shadow: 0px 10px 30px rgba(130, 191, 183, 0.15);
  padding: 30px;
}

form {
  display: flex;
}

.instructions {
  padding: 18px 25px;
  border: 2px solid #c6e6e3;
  width: 100%;
  font-size: 16px;
  border-radius: 50px;
  color: #2e2e2e;
  outline: none;
  transition: border-color 0.3s ease;
}

.instructions:focus {
  border-color: #82bfb7;
}

.submit-button {
  background-color: #fec3dd;
  margin-left: 15px;
  border: none;
  font-weight: bold;
  color: #2e2e2e;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 #e0a3be;
}

.submit-button:hover {
  transform: translateY(-2px);
  background-color: #ffdae9;
  box-shadow: 0 6px 0 #e0a3be;
}

.submit-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #e0a3be;
}
.hint {
  color: #82bfb7;
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
  font-style: italic;
}

.prompt {
  font-size: 18px;
  background-color: white;
  padding: 30px;
  line-height: 1.6;
  border-left: 8px solid #fec3dd;
  box-shadow: 0px 10px 30px rgba(130, 191, 183, 0.1);
  border-radius: 15px;
  color: #2e2e2e;
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  font-size: 12px;
  margin-top: 50px;
  color: #2e2e2e;
  opacity: 0.8;
}

footer a {
  color: #82bfb7;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-bottom: 1.5px solid #fec3dd;
}

footer a:hover {
  color: #fec3dd;
  border-bottom-color: #82bfb7;
}

.blink {
  color: #82bfb7;
  font-weight: bold;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.app-logo {
  max-width: 90px;
  filter: invert(74%) sepia(13%) saturate(763%) hue-rotate(124deg)
    brightness(91%) contrast(87%);
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: invert(74%) sepia(13%) saturate(763%) hue-rotate(124deg)
    brightness(91%) contrast(87%) drop-shadow(0 0 8px rgba(130, 191, 183, 0.4));
}

.logo-link:active .app-logo {
  transform: scale(0.9);
  filter: invert(88%) sepia(21%) saturate(954%) hue-rotate(297deg)
    brightness(101%) contrast(101%);
}
