/* ===================================
   SPEAKER REGISTRATION PAGE
=================================== */
.speaker-registration-page {
  font-family: "DM Sans", "Roboto", sans-serif;
  color: #11184A;
  background: #fff;
  overflow-x: hidden;
}

/* ===================================
   HERO SECTION (TWO-COLUMN)
=================================== */
.speaker-hero {
  padding: 20px 8%;
  background-image: url("/images/speaker.png");
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.speaker-hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  transform: translateX(120px);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* When visible, slides to original position */
.speaker-hero-container.visible {
  transform: translateX(0);
}

/* LEFT SIDE */
.speaker-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  height: 100%;
  margin-top: 60px;
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 700;
  color: #11184A;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.8rem;
  color: #11184A;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
  font-weight: 300;
}

/* RIGHT SIDE (FORM) */
.speaker-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

form {
  background: #FCE570;
  border-radius: 24px;
  padding: 20px 30px;
  box-shadow: 0 20px 50px rgba(17, 24, 74, 0.08);
  border: 1px solid rgba(17, 24, 74, 0.05);
  width: 100%;
  max-width: 680px;
  transition: all 0.4s ease;
}

/* Input fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-fields input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(17, 24, 74, 0.15);
  border-radius: 12px;
  background: #fafafa;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-fields input:focus {
  border-color: #11184A;
  box-shadow: 0 0 0 3px rgba(17, 24, 74, 0.1);
  outline: none;
  background: #fff;
}

/* Buttons */
.button-group {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #11184A;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* Email Us button */
.emailtous {
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid #11184A;
  color: #11184A;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.emailtous::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #11184A;
  z-index: 0;
  transition: height 0.4s ease;
}

.emailtous span,
.emailtous {
  position: relative;
  z-index: 1;
}

.emailtous:hover::before {
  height: 100%;
}

.emailtous:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* ================================
   TOAST MESSAGE
================================ */
.toast-message {
  visibility: hidden;
  min-width: 250px;
  max-width: 500px;
  background-color: #fff;
  color: #11184A;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #11184A;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 1rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s;
}

.toast-message.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {
  .speaker-hero-container {
    flex-direction: column;
    text-align: center;
    transform: translateX(0);
  }

  .speaker-hero-left {
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  form {
    margin-top: 30px;
    max-width: 500px;
    padding: 30px;
  }
}
