/* Eemalda body padding ja margin, need jäta vaikimisi */

/* .form-wrapper'i stiil ainult selle vormiosa jaoks */
.form-wrapper.thank-you {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

/* Tänulehe kast, ainult kui vorm on saadetud */
.thank-you-box {
  background: white;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #FF0000;
  width: 100%;
}

.thank-you-box h1 {
  color: #222;
  font-size: 24px;
  margin-bottom: 10px;
}

.thank-you-box p {
  color: #444;
  font-size: 16px;
}

.thank-you-box a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #FF0000;
  font-weight: bold;
}

.thank-you-box a:hover {
  text-decoration: underline;
}