@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

/* Updated Header Styles for New Design */
.header {
  background: transparent;
  padding: 0;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid #fff;
  background: #FFFFFF;
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px 10px 32px;
  min-height: 64px;
}

.nav-container img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 17px;
  font-weight: 500;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 17px;
  text-transform: none;
  transition: color 0.3s;
  padding: 0 6px;
}

.nav-menu a:hover {
  color: #6B46C1;
}

.login-btn {
  background: #ede3f1;
  color: #4b2673 !important;
  padding: 12px 38px !important;
  border-radius: 30px;
  text-transform: none !important;
  font-weight: 700;
  font-size: 18px;
  margin-left: 32px;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}

.login-btn:hover {
  background: #d6c2e6;
  color: #2d1457 !important;
}

.vietnam-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-left: 32px;
}

.vietnam-flag span {
  font-size: 22px;
}

@media (max-width: 1100px) {
  .nav-container {
    padding: 10px 10px 10px 10px;
  }

  .nav-menu {
    gap: 18px;
    font-size: 15px;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 15px;
    margin-left: 12px;
  }

  .vietnam-flag {
    font-size: 15px;
    margin-left: 12px;
  }
}

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 5px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .login-btn,
  .vietnam-flag {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Section Styles */
.section {
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.text-content {
  z-index: 2;
  padding: 0 50px;
}

.age-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-logo {
  margin-bottom: 30px;
}

.section-logo img {
  height: 60px;
}

.section-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.learn-more-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
}

.learn-more-btn:hover {
  background: white;
  color: #6B46C1;
}

.image-content {
  position: relative;
  z-index: 1;
}

.image-content img {
  display: block;
  width: 100%;
  height: auto;
}

/* Section-specific styles */
.section-purple {
  background: rgba(63, 24, 106, 1);
  color: white;
}

.section-green {
  background: rgba(143, 197, 40, 1);
  color: white;
}

.section-lavender {
  background: rgba(188, 149, 196, 1);
  color: white;
}

/* Background decorative elements */
.section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -100px;
  right: -100px;
}

.section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -75px;
  left: -75px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .section {
    min-height: auto;
  }

  .section-description {
    font-size: 14px;
  }
}

/* Logo styles for different sections */
.grapeseed-logo {
  font-size: 36px;
  font-weight: bold;
  color: white;
  font-style: italic;
}

.baby-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.baby-logo::before {
  content: "👶";
  font-size: 40px;
}

.littleseed-logo {
  font-size: 32px;
  font-weight: bold;
  color: white;
  font-style: italic;
}

/* Mission Section Styles */
.section-mission {
  position: relative;
  background: #f7f7f7;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px;
}

.mission-leaf-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: url("https://de.cdn-website.com/1b7a50cb2a914e26938b465d200f8580/dms3rep/multi/bg-ornament_leaf.svg") no-repeat center center;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr;
  gap: 60px;
  width: 100%;
  align-items: center;
  padding: 40px;
  max-width: 1200px;
}

.mission-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mission-title {
  font-size: 64px;
  font-weight: 800;
  color: #5b2e86;
  margin-bottom: 40px;
  line-height: 1.1;
  text-align: center;
  z-index: 1;
}

.mission-highlight {
  font-size: 48px;
  font-weight: 700;
  color: #a3ce3a;
  line-height: 1.2;
}

.mission-right {
  font-size: 22px;
  color: #444;
  font-weight: 400;
}

@media (max-width: 900px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 10px;
  }

  .mission-title {
    font-size: 40px;
  }

  .mission-highlight {
    font-size: 24px;
  }

  .mission-right {
    font-size: 18px;
    padding: 24px 12px;
  }

  .mission-leaf-bg {
    width: 350px;
    height: 450px;
  }
}

/* Vision Section Styles */
.section-vision {
  position: relative;
  background: #ede3f1;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}

.vision-grape-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: url("https://de.cdn-website.com/1b7a50cb2a914e26938b465d200f8580/dms3rep/multi/grapes.svg") no-repeat center center;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
}

.vision-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-title {
  font-size: 64px;
  font-weight: 800;
  color: #5b2e86;
  margin-bottom: 48px;
  line-height: 1.1;
  text-align: center;
}

.vision-list {
  font-size: 22px;
  color: #222;
  font-weight: 500;
  line-height: 1.7;
  list-style: disc inside;
  margin: 0;
  padding: 0;
  text-align: left;
}

.vision-list li {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .vision-title {
    font-size: 40px;
  }

  .vision-content {
    padding: 24px 5px;
  }

  .vision-list {
    font-size: 18px;
  }

  .vision-grape-bg {
    width: 350px;
    height: 350px;
  }
}

/* Impact Section Styles */
.section-impact {
  position: relative;
  background: #fff;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px 0;
}

.impact-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-title {
  font-size: 64px;
  font-weight: 800;
  color: #4b2673;
  margin-bottom: 40px;
  line-height: 1.1;
  text-align: center;
}

.impact-highlight {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.3;
}

.impact-green {
  color: #8fca2f;
}

.impact-purple {
  color: #4b2673;
}

.impact-map {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impact-map img {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .impact-title {
    font-size: 40px;
  }

  .impact-highlight {
    font-size: 20px;
  }

  .impact-map img {
    max-width: 100%;
  }

  .section-impact {
    padding: 60px 0 30px 0;
  }
}

/* Footer Styles */
.site-footer {
  background: rgba(63, 24, 106, 1);
  color: #bdbdbd;
  padding: 48px 20px 32px 20px;
  text-align: center;
  margin-top: 0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-badge {
  height: 56px;
  width: auto;
}

.footer-info {
  font-size: 16px;
  color: #bdbdbd;
  margin-top: 8px;
  line-height: 1.7;
}

.footer-info div {
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .footer-logos {
    flex-direction: column;
    gap: 16px;
  }

  .footer-logo,
  .footer-badge {
    height: 36px;
  }

  .footer-info {
    font-size: 13px;
  }
}

/* Hero Video Section Styles */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 30, 60, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.hero-down-arrow {
  font-size: 36px;
  color: #fff;
  opacity: 0.8;
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(16px);
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-video-section {
    min-height: 320px;
    height: 50vh;
  }
}

/* Enhanced Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 60px;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
  transform-origin: center;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 24px;
  font-weight: 300;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.close:hover {
  background-color: #f5f5f5;
  color: #333;
}

/* Enhanced Auth Tabs */
.auth-tabs {
  display: flex;
  margin: -20px -40px 24px -40px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
  border-radius: 16px 16px 0 0;
  padding: 0 20px;
}

.tab-btn {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #4b2673;
  transition: width 0.3s;
}

.tab-btn.active {
  color: #4b2673;
}

.tab-btn.active::after {
  width: 100%;
}

.tab-btn:hover:not(.active) {
  color: #4b2673;
  background: rgba(75, 38, 115, 0.05);
}

/* Disabled tab styles */
.tab-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Enhanced Form Styles */
.auth-form {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  color: #4b2673;
  margin-bottom: 28px;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background: #fafafa;
}

.form-group input:focus {
  border-color: #4b2673;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(75, 38, 115, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
  background: #fff;
}

.form-group input:valid:not(:placeholder-shown) {
  border-color: #4CAF50;
  background: #fff;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #4b2673;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #3a1d5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(75, 38, 115, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.submit-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Error Message Styles */
.error-message {
  color: #ff4444;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-group input:invalid:not(:placeholder-shown)+.error-message {
  display: block;
}

/* Success Message Styles */
.success-message {
  color: #4CAF50;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-group input:valid:not(:placeholder-shown)+.success-message {
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .modal-content {
    margin: 0;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 20px;
  }

  .auth-tabs {
    margin: -20px -20px 20px -20px;
    border-radius: 0;
  }

  .tab-btn {
    padding: 12px;
    font-size: 14px;
  }

  .form-group input {
    padding: 12px;
  }

  .submit-btn {
    padding: 12px;
  }
}

/* Form Steps */
.form-step {
  animation: fadeIn 0.3s ease-out;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 10px;
}

.phone-input-group input {
  flex: 1;
}

.otp-btn {
  padding: 0 20px;
  background: #4b2673;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.otp-btn:hover {
  background: #3a1d5a;
}

.otp-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* OTP Input Group */
.otp-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.otp-input-group input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.resend-btn {
  padding: 10px 15px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.resend-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Timer */
.timer {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.timer span {
  font-weight: bold;
  color: #333;
}

/* Success and error message styles */
.success-message,
.error-message {
  display: none;
  margin-top: 5px;
  font-size: 14px;
}

.success-message {
  color: #28a745;
}

.error-message {
  color: #dc3545;
}

/* Form step transitions */
.form-step {
  transition: opacity 0.3s ease-in-out;
}

.form-step[style*="display: none"] {
  opacity: 0;
}

.form-step[style*="display: block"] {
  opacity: 1;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.back-btn {
  padding: 14px 24px;
  background: transparent;
  color: #4b2673;
  border: 2px solid #4b2673;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn:hover {
  background: rgba(75, 38, 115, 0.1);
}

.submit-btn {
  flex: 1;
}

/* Progress Indicator */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #eee;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #666;
  position: relative;
  z-index: 2;
}

.progress-step.active {
  border-color: #4b2673;
  color: #4b2673;
}

.progress-step.completed {
  background: #4b2673;
  border-color: #4b2673;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 480px) {

  .phone-input-group,
  .otp-input-group {
    flex-direction: column;
  }

  .otp-btn,
  .resend-btn {
    width: 100%;
    padding: 12px;
  }

  .form-navigation {
    flex-direction: column;
  }

  .back-btn {
    width: 100%;
  }
}

.forgot-password {
  text-align: right;
  margin-top: 5px;
}

.forgot-password a {
  color: #6B46C1;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.otp-btn {
  background-color: #6B46C1;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.otp-btn:hover {
  background-color: #553C9A;
}

.otp-btn:disabled {
  background-color: #A0AEC0;
  cursor: not-allowed;
}

.otp-input-group {
  display: flex;
  gap: 10px;
}

.resend-btn {
  background-color: transparent;
  color: #6B46C1;
  border: 1px solid #6B46C1;
  padding: 11px 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.resend-btn:hover {
  background-color: #F7FAFC;
}

.resend-btn:disabled {
  color: #A0AEC0;
  border-color: #A0AEC0;
  cursor: not-allowed;
}

.timer {
  font-size: 12px;
  color: #718096;
  margin-top: 5px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.back-btn {
  background-color: transparent;
  color: #4A5568;
  border: 1px solid #E2E8F0;
  padding: 14px;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
}

.back-btn:hover {
  background-color: #F7FAFC;
}

/* Invitation Sign Up Form Styles */
#invitationSignupWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.invitation-signup-container {
  position: relative;
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;
  margin: 20px;
}

.invitation-signup-title {
  color: #7c3aed;
  font-size: 1.7rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.invitation-signup-tabs {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 32px;
}

.invitation-signup-tabs .tab {
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: #7c3aed;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.invitation-signup-tabs .tab.active {
  background: #ede7fa;
  color: #4b2996;
}

#invitationSignupForm .form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

#invitationSignupForm label {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

#invitationSignupForm .required {
  color: #e11d48;
  font-weight: bold;
}

#invitationSignupForm input[type="text"],
#invitationSignupForm input[type="email"],
#invitationSignupForm input[type="tel"],
#invitationSignupForm input[type="password"] {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: #faf9fd;
  transition: border 0.2s;
}

#invitationSignupForm input:focus {
  border-color: #7c3aed;
  outline: none;
}

#invitationSignupForm .submit-btn {
  width: 100%;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

#invitationSignupForm .submit-btn:disabled {
  background: #ede7fa;
  color: #b5a7d6;
  cursor: not-allowed;
}

.close-invitation-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s;
}

.close-invitation-modal:hover {
  color: #333;
}