/* ==========================================================================
   DESIGN TOKENS & BASE CONFIGURATION
   ========================================================================== */
:root {
  --primary: #00DF00;
  --primary-hover: #00B500;
  --bg-dark: #000000;
  --bg-light: #ffffff;
  --bg-gray: #f5f5f5;
  --bg-card: #ffffff;
  
  --text-dark: #000000;
  --text-light: #ffffff;
  --text-muted: #555555;
  
  --border-color: #e0e0e0;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
}




/* ==========================================================================
   MAIN HEADER (STICKY)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.haleon-logo {
  display: block;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-session {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-session:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-session.logged-in {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-session.logged-in:hover {
  background-color: rgba(0, 223, 0, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* ==========================================================================
   SECCIÓN 1: HERO CON VIDEO
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-dark);
  margin-top: 70px; /* Header spacing */
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Disable manual user interactions */
  border: none;
  z-index: 1;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/poster_1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2; /* Colocado encima del iframe de Vimeo */
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.video-poster.fade-out {
  opacity: 0;
}

/* INFO BANNER */
.info-banner {
  background-color: var(--bg-light);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.green-block {
  width: 48px;
  height: 94px;
  background-color: var(--primary);
  flex-shrink: 0;
}

.banner-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}



/*=========================
    WEBINAR
==========================*/

.webinar-info{
    width:100%;
    max-width:1100px;
    margin:30px auto 20px;
    padding:0 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.webinar-item{
    flex:1;
    text-align:center;
}

.webinar-title span{
    color:#19E600;          /* usa el verde oficial */
    font-size:clamp(2.8rem,6vw,5rem);
    font-weight:800;
    line-height:1;
    letter-spacing:-1px;
}

.label{
    font-size:clamp(1.8rem,3vw,3rem);
    font-weight:300;
    color:#000000;
    line-height:1.1;
}

.value{
    font-size:clamp(2.3rem,3vw,3rem);
    font-weight:800;
    color:#000000;
    line-height:1.05;
}

.divider{
    width:1px;
    align-self:stretch;
    background:rgba(255,255,255,.35);
}

@media (max-width:768px){

    .webinar-info{
        flex-direction:column;
        gap:28px;
        margin-top:40px;
    }

    .divider{
        width:100%;
        height:1px;
    }

    .webinar-item{
        width:100%;
    }

    .webinar-title span{
        font-size:3rem;
    }

    .label{
        font-size:2rem;
    }

    .value{
        font-size:2.8rem;
    }

}






/* ==========================================================================
   SECCIÓN 2: CONFERENCISTAS (PARALLAX EFFECT)
   ========================================================================== */
.speakers-section {
  position: relative;
  padding: 80px 0;
  background-image: url('https://plmlatamtools.s3.amazonaws.com/colombia/haleon_2026/shutterstock_2305055183%20-1.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ebebeb; /* Mockup grey background */
  overflow: hidden;
}

.speakers-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(235, 235, 235, 0.88); /* Grayish transparent cover */
  z-index: 1;
}

.speakers-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 2;
}

.section-header-wrap {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.speakers-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: var(--transition);
}

.speaker-card:hover {
  transform: translateY(-5px);
}

.speaker-avatar-wrap {
  width: 100%;
  max-width: 220px;
}

.speaker-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 223, 0, 0.2);
}

.speaker-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.speaker-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.speaker-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stripes Pattern Decoration on Right */
.stripes-decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 30px;
}

.stripe-bar {
  width: 35px;
  height: 60px;
  border-top: 4px solid #a0a0a0;
  border-bottom: 4px solid #a0a0a0;
  position: relative;
}

.stripes-decoration::after {
  content: '';
  display: block;
  width: 35px;
  height: 180px;
  background: repeating-linear-gradient(
    0deg,
    #a0a0a0,
    #a0a0a0 4px,
    transparent 4px,
    transparent 10px
  );
}

/* ==========================================================================
   SECCIÓN 3: FORMULARIO DE REGISTRO
   ========================================================================== */
.register-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.register-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  background-color: #F4F4F4; /* Light grey form box from mockup */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.register-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hpmi-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.register-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
}

.register-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 35px auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 223, 0, 0.15);
}

.form-group select {
  cursor: pointer;
  color: var(--text-dark);
}

.form-group select:invalid {
  color: #999;
}

.form-actions {
  display: flex;
  justify-content: center;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 14px 60px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 223, 0, 0.2);
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 223, 0, 0.25);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ==========================================================================
   SECCIÓN 4: TRANSMISIÓN EN VIVO
   ========================================================================== */
.live-section {
  display: none; /* Hidden by default, shown when localstorage token is true */
  padding: 80px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.live-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.live-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.live-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: red;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

.live-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-dark);
}

.video-ratio-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-ratio-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   SECCIÓN 5: CARRUSEL INFINITO
   ========================================================================== */
.carousel-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.carousel-outer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px; /* Leave space for control arrows */
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  background-color: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slide-left-col {
  width: 33.333%;
  display: flex;
  align-items: stretch;
  background-color: #000;
}

.slide-left-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-right-col {
  width: 66.667%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-right-col .video-ratio-box {
  width: 100%;
}

/* Control Arrows */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.carousel-control:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 223, 0, 0.3);
}

.carousel-control.prev {
  left: 5px;
}

.carousel-control.next {
  right: 5px;
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicators .indicator.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   SECCIÓN 6: LOGOS GRID
   ========================================================================== */
.logos-section {
  padding: 50px 0;
  background-color: #ececec;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.logos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.logos-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.logos-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  animation: none;
}

.logos-slide {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  gap: 30px;
  padding-right: 0;
}

.logos-slide[aria-hidden="true"] {
  display: none;
}

.logo-item {
  flex: 0 1 auto;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: var(--transition);
}

.logo-item img:hover {
  transform: scale(1.05);
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 880px) {
  .logos-section {
    padding: 45px 0;
  }
  
  .logos-grid {
    width: max-content;
    animation: logoScroll 20s linear infinite;
    justify-content: flex-start;
  }
  
  .logos-slide {
    width: auto;
    justify-content: flex-start;
    gap: 50px;
    padding-right: 50px;
  }
  
  .logos-slide[aria-hidden="true"] {
    display: flex;
  }
  
  .logo-item {
    flex: 0 0 auto;
    width: 140px;
  }
  
  .logo-item img {
    max-height: 55px;
  }
  
  .logos-grid:hover {
    animation-play-state: paused;
  }
}



/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  padding: 50px 0 40px 0;
  background-color: var(--bg-light);
  color: #000;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo-wrap {
  margin-bottom: 0px;
}

.plm-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-text a {
  color: #000000;
  transition: var(--transition);
}

.footer-text a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   TOAST NOTIFICATION COMPONENT
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 15px 25px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  animation: slideIn 0.3s ease forwards;
  border-left: 4px solid var(--primary);
  max-width: 350px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.toast-error {
  border-left-color: #ff3b30;
}

.toast.toast-warning {
  border-left-color: #ffcc00;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

/* 1. Large screens override (centered layout) */
@media (min-width: 1440px) {
  .header-container, .carousel-outer-wrapper {
    padding: 0;
  }
}

/* 2. Tablet Mode (max-width: 1024px) */
@media (max-width: 1024px) {
  .speakers-grid-layout {
    gap: 30px;
  }
  
  .stripes-decoration {
    display: none; /* Hide background stripes if tight on space */
  }
}

/* 3. Small Tablet / Large Mobile (max-width: 820px) */
@media (max-width: 820px) {
  .haleon-logo {
    width: 152px;
    height: 24px;
  }

  /* Navigation Hamburger */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    display: none;
    animation: slideDownMenu 0.3s ease forwards;
  }
  
  @keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-menu a {
    display: block;
    font-size: 1.1rem;
  }
  
  /* Form block */
  .register-container {
    padding: 30px 20px;
  }
  
  /* Carousel layout grid stack */
  .carousel-slide {
    flex-direction: column;
  }
  
  .slide-left-col {
    width: 100%;
    height: 250px;
  }
  
  .slide-right-col {
    width: 100%;
  }
  
  .carousel-outer-wrapper {
    padding: 0 45px;
  }
  
  .speakers-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 4. Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .banner-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 15px;
  }
  
  .green-block {
    width: 80px;
    height: 16px;
  }
  
  .banner-title {
    font-size: 1.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .speakers-container {
    padding: 0 15px;
  }
  
  .speakers-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .btn-submit {
    width: 100%;
    padding: 14px 20px;
  }
  
  .carousel-outer-wrapper {
    padding: 0 15px;
  }
  
  .carousel-control {
    display: none; /* Hide arrows on small screens, rely on touch swipe indicators */
  }
  
  .logos-slide {
    gap: 30px;
    padding-right: 30px;
  }
  
  .logo-item {
    width: 100px;
  }
  
  .logo-item img {
    max-height: 45px;
  }
  
  .main-footer {
    padding: 30px 15px;
  }
}

/* 5. Parallax scroll fallback for touch devices */
@media (hover: none) {
  .speakers-section {
    background-attachment: scroll;
  }
}

/* ==========================================================================
   MODAL DE INICIO DE SESIÓN
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-light);
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-content .form-group {
  margin-bottom: 20px;
}

.modal-content input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.modal-content input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.modal-content .btn-submit {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.modal-content .btn-submit:hover {
  background-color: var(--primary-hover);
}
