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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

.coming-soon-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.coming-soon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.6);
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.logo-container {
  margin-top: 40px;
  margin-bottom: 10px;
}

.logo {
  max-width: 120px;
  height: auto;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-top: 40px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-form-container {
  width: 100%;
  max-width: 400px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.email-input {
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}
.email-input::placeholder {
  color: #999;
}
.email-input:focus {
  outline: none;
  border-color: #2a7ae2;
  box-shadow: 0 0 0 3px rgba(42, 122, 226, 0.1);
}
.email-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.95) inset;
  -webkit-text-fill-color: #333;
}

.cta-button {
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #2a7ae2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-button:hover {
  background-color: #1e5aa8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 122, 226, 0.3);
}
.cta-button:active {
  transform: translateY(0);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}
.social-icon svg {
  width: 20px;
  height: 20px;
}

#mc_embed_shell {
  width: 100%;
}

.coming-soon-footer {
  margin-top: auto;
  margin-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}
.coming-soon-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.success-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.success-icon {
  font-size: 3.5rem;
  color: #27ae60;
  margin-bottom: 20px;
  display: block;
  animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.success-card h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.2;
}

.success-message {
  font-size: 1rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

.follow-text {
  font-size: 0.875rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 30px;
}

.success-card .social-icons {
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
}

.success-card .social-icon {
  color: #2a7ae2;
  background-color: rgba(42, 122, 226, 0.1);
  border: 2px solid rgba(42, 122, 226, 0.3);
}
.success-card .social-icon:hover {
  background-color: rgba(42, 122, 226, 0.15);
  border-color: #2a7ae2;
  color: #1e5aa8;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 0.875rem;
  color: #2a7ae2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.back-link:hover {
  color: #1e5aa8;
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .success-card {
    padding: 40px 30px;
  }
  .success-card h1 {
    font-size: 2rem;
  }
  .success-icon {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .success-card {
    padding: 30px 20px;
    margin: 0 15px;
  }
  .success-card h1 {
    font-size: 1.5rem;
  }
  .success-message {
    font-size: 0.9rem;
  }
  .success-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .success-card .social-icons {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .coming-soon-background {
    background-attachment: scroll;
  }
  .coming-soon-content {
    max-width: 100%;
    padding: 30px 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cta-form-container {
    max-width: 100%;
  }
  .social-icons {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .logo {
    max-width: 100px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .email-input,
  .cta-button {
    font-size: 1rem;
    padding: 12px 14px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
  }
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
  .coming-soon-footer p {
    font-size: 0.75rem;
  }
}

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