/* Reset & Body-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  font-family: "Poppins", sans-serif;
  background-color: #f0f7fd;
  color: #434343;
  line-height: 1.5;
}
/* Layout / Struktur */
.header {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.header-box {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 95%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.header-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.logo {
  position: absolute;
  left: 60px;
  height: 75px;
  width: auto;
}
.title {
  font-size: 50px;
  font-weight: 600;
}
.coin-icon {
  height: 80px;
  width: auto;
}
main {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 95%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.feld {
  padding: 2px;
}
.start-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.button-coin {
  width: 350px;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.button-coin:hover {
  transform: scale(1.1) rotate(10deg);
}
.footer {
  background-color: #ffffff;
  padding: 10px 40px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 95%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 5px;
}

.link {
  display: inline-block;
  margin-top: 8px;
  color: #006db6;
  text-decoration: none;
  font-weight: bold;
  transition-duration: 0.2s;
}

.link:hover {
  text-decoration: none;
  transform: scale(0.9);
}

.error-message {
  color: red;
  margin-left: 8px;
}
.betrag-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

#spendenbetrag-slider {
  flex: 0.25;
}

#spendenbetrag {
  width: 100px;
}
.zahlungsarten {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}
.zahlungsarten label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nachricht {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  resize: vertical;
  min-height: 100px;
}
.nachricht label {
  display: block;
  margin-bottom: 6px;
}
#spendenzweck {
  width: 120%;
  max-width: 500px;
  box-sizing: border-box;
}
.dankensnachricht {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  resize: vertical;
  min-height: 60px;
}
.passwort-eingabe {
  display: flex;
  align-items: center;
  position: relative;
}

.passwort-eingabe input {
  flex: 1;
  padding-right: 40px;
}

.toggle-passwort {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
}
