* {
  box-sizing: border-box;
}
html, body {
  padding: 0;
  margin: 0;
  min-width: 320px;
}
body {
  background: #d8d9db;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
}

a {
  color: #212125;
  text-decoration-color: #00a13a;
}
a:hover {
  color: #00a13a;
}
label {
  cursor: pointer;
  color: #00a13a;
}
h1,
h2,
h3,
h4 {
  font-family: Tahoma, Arial, sans-serif;
  font-weight: bold;
  color: #00a13a;
  margin-top: 0;
}
.section {
  margin-bottom: 45px;
}

input[type="text"], input[type="email"], input[type="password"], select {
  padding: 10px 15px;
  border: 1px solid #00a13a;
  border-radius: 6px;
  width: 100%;
  box-shadow: 2px 2px 0 #f3f3f3;
  font-size: 1em;
  font-family: Tahoma, Arial, sans-serif;
  transition: border-color 0.3s ease;
}
input:focus {
  border-color: #dfecd7;
  outline: none;
}

input:focus::placeholder {
  color: transparent;
}

input[disabled] {
  opacity: 0.5;
}

.center {
  text-align: center;
}
.right {
  text-align: right;
}
.error {
  color: #d9534f; /* Rot für Fehler */
}
.button {
  background: #00a13a;
  padding: 15px 30px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  min-width: 150px;
  font-size: 1.1em;
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.button:hover {
  background: #213a8f;
  color: #ffffff;
}
.button.button-outline {
  background: #ffffff;
  border: 1px solid #00a13a;
  color: #00a13a;
}
.button.button-outline:hover {
  border-color: #dfecd7;
  background-color: #213a8f;
  color: #ffffff;
}

.container {
  margin: 60px auto 15px auto;
  max-width: 550px;  
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 30px 40px;
  font-family: Tahoma, Arial, sans-serif;
}

.wrap {
  background: #ffffff;
  padding: 40px;
  box-shadow: 2px 2px 0 #f3f3f3;
  border: 1px solid #eee;
  border-radius: 8px;
}

.header {
  border-bottom: 3px solid #00a13a;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
  color: #00522e;
  font-family: Tahoma, Arial, sans-serif;
}
.header .logo img {
  width: auto;
  max-width: 150px;
  display: block;
  margin: 0 auto;
}

.unsub-all {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 0.9em;
  color: #666666;
  font-family: Tahoma, Arial, sans-serif;
}

.row {
  margin-bottom: 20px;
}
.lists {
  list-style-type: none;
  padding: 0;
}
.lists li {
  margin: 0 0 5px 0;    
}
.lists .description {
  margin: 0 0 15px 0;
  font-size: 0.875em;
  line-height: 1.3rem;
  color: #888888;
  margin-left: 25px;
}
.form .nonce {
  display: none;
}
.form .captcha {
  margin-top: 30px;
}

.archive {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
}
.archive .date {
  display: block;
  color: #666666;
  font-size: 0.875em;
}
.archive li {
  margin-bottom: 15px;
}
.feed {
  margin-right: 15px;
}

.home-options {
  margin-top: 30px;
}
.home-options a {
  margin: 0 7px;
  color: #00a13a;
}
.home-options a:hover {
  color: #213a8f;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}
.pg-page {
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  color: #dfecd7;
  font-weight: bold;
}
.pg-page.pg-selected {
  text-decoration: underline;
  font-weight: bold;
}

.login .submit {
  margin-top: 20px;
}
.login button {
  width: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Tahoma, Arial, sans-serif;
  font-weight: bold;
  background-color: #00a13a;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login button:hover {
  background-color: #213a8f;
}
.login button img {
  max-width: 24px;
  margin-right: 10px;
}

#btn-back {
  display: none;
}

footer.container {
  margin-top: 30px;
  text-align: center;
  color: #888888;
  font-size: 0.775em;
  font-family: Tahoma, Arial, sans-serif;
}
footer a {
  color: #00a13a;
  text-decoration: none;
}
footer a:hover {
  color: #213a8f;
}

@media screen and (max-width: 650px) {
  .wrap {
    margin: 0;
    padding: 30px;
    max-width: none;
  }
}
