* {
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #0b0b0b;
  text-align: center;
  background-color: #f5f5f5;
  /*
    font-family: Verdana, Tahoma, Arial, sans-serif;
  */
  font-family: Verdana, "Google Sans", Tahoma, Arial, sans-serif;
}

a img {
  border: 0;
  outline: none;
}

a,
a:link,
a:visited,
a:active {
  color: #000268;
  text-decoration: none;
}

a:hover {
  color: #000268;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
}

.main {
  flex: 1;
  min-height: 0;
}
.main h1 {
  margin-top: 20px;
  margin-bottom: 30px;
  color: #000000;
}
.main h2 {
  margin-top: 20px;
  margin-bottom: 30px;
  color: #000000;
}
.main .p1 {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .main {
    flex: 1;
  }
}
.cookie-notice {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 9999;
  max-width: 95%;
}
.cookie-notice a,
.cookie-notice a:link,
.cookie-notice a:visited,
.cookie-notice a:active {
  color: #fcf700;
  text-decoration: none;
}
.cookie-notice a:hover {
  color: #ffffff;
}

.cookie-btn {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-btn:hover {
  background: #43a047;
}

@media (max-width: 800px) {
  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-btn {
    align-self: flex-end;
  }
}
.footer {
  width: 100%;
  margin-top: 0px;
  color: #0b0b0b;
  flex-shrink: 0;
  border-top: 0px solid #ddd;
  height: auto;
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer_wrapper {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer_left,
.footer_right {
  display: flex;
  align-items: center;
  height: 40px;
}

.footer_left {
  justify-content: flex-start;
  flex: 1;
  gap: 20px;
}

.footer_left a {
  color: #8a0808;
  text-decoration: none;
  font-size: 0.8em;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  font-weight: bold;
}

.footer_left a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer_right {
  justify-content: flex-end;
  flex: 1;
  font-size: 0.8em;
  letter-spacing: 0.15em;
}

.grecaptcha-badge {
  z-index: 9999;
  bottom: 60px !important;
}

@media (max-width: 1520px) {
  .footer_wrapper {
    max-width: 100%;
  }
}
@media (max-width: 950px) {
  .footer_wrapper {
    justify-content: center;
    text-align: center;
  }
  .footer_left,
  .footer_right {
    flex: 0 0 100%;
    justify-content: center;
    height: auto;
  }
  .footer_left {
    margin-bottom: 5px;
  }
}
@media (max-width: 560px) {
  .footer_media1 {
    display: none;
  }
}
@media (max-width: 550px) {
  .grecaptcha-badge {
    display: none;
  }
}
@media (max-width: 320px) {
  .footer_media2 {
    display: none;
  }
}
.passResetH2 {
  margin: 20px 0;
}

div.passResetDiv {
  max-width: 420px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: Arial, sans-serif;
}

.info_box,
.error_box {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.info_box {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #256029;
}

.error_box {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #a94442;
}

.passForgotForm .form_group,
.passResetForm .form_group {
  margin-bottom: 18px;
}

.passForgotForm label,
.passResetForm label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}

.passForgotForm input[type=email],
.passResetForm input[type=password] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.passForgotForm input[type=email]:focus,
.passResetForm input[type=password]:focus {
  border-color: #38bdf8;
  outline: none;
}

.passForgotForm button,
.passResetForm button {
  width: 100%;
  padding: 12px;
  background: #8a0808;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.passForgotForm button:hover,
.passResetForm button:hover {
  background: #1e293b;
}/*# sourceMappingURL=mainCSS.css.map */