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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #b02026;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
  isolation: isolate;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.header {
  text-align: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  isolation: isolate;
  position: relative;
  z-index: 1;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95) !important;
  isolation: isolate;
}

.event-details {
  max-width: 600px;
  margin: 0 auto 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0;
  isolation: isolate;
}

.detail-value {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0;
  isolation: isolate;
}

.signup-section {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.signup-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #ffffff;
}

.signup-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
}

.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.form-group input::placeholder,
.form-group select::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.captcha-container {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0;
}

.submit-button {
  padding: 1rem 2rem;
  background-color: #b02026;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  margin-top: 0.5rem;
}
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background-color: #8a191e;
}
.submit-button:active {
  transform: translateY(0);
}
.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin-top: 0.5rem;
  display: none;
}
.form-message.success {
  display: block;
  background-color: rgba(56, 142, 60, 0.2);
  color: #ffffff;
  border: 1px solid rgba(56, 142, 60, 0.5);
}
.form-message.error {
  display: block;
  background-color: rgba(211, 47, 47, 0.2);
  color: #ffffff;
  border: 1px solid rgba(211, 47, 47, 0.5);
}

.partner-section {
  max-width: 600px;
  margin: 3rem auto 0;
  width: 100%;
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partner-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s ease;
}
.partner-link:hover {
  opacity: 0.8;
}

.partner-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }
  .title {
    font-size: 2rem;
  }
  .logo {
    max-width: 150px;
  }
  .intro-text {
    font-size: 1rem;
  }
  .event-details {
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
  .detail-label {
    font-size: 1.125rem;
  }
  .detail-value {
    font-size: 1rem;
  }
  .signup-section {
    padding: 1.5rem;
  }
  .signup-title {
    font-size: 1.75rem;
  }
  .partner-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  .partner-text {
    font-size: 1.125rem;
  }
  .form-group input,
  .form-group select {
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
  }
  .submit-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 1rem 0.75rem;
  }
  .title {
    font-size: 1.75rem;
  }
  .logo {
    max-width: 120px;
  }
  .event-details {
    margin-bottom: 1.25rem;
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
  }
  .detail-label {
    font-size: 1rem;
  }
  .detail-value {
    font-size: 0.9375rem;
  }
  .signup-section {
    padding: 1.25rem;
  }
  .signup-title {
    font-size: 1.5rem;
  }
  .partner-section {
    padding: 1.25rem;
    margin-top: 1.5rem;
  }
  .partner-text {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
