/* ============================================================
   Styles/index.css — Login Page Styles
   ============================================================
   LOCATION: BookingApp/Styles/index.css
   USED BY: index.html

   EN: Styles for the login/register split-card page.
       Load after base.css. The inline <style> block that was
       previously in index.html has been merged into this file.
   TL: Mga estilo para sa login/register split-card page.
       I-load pagkatapos ng base.css. Ang inline <style> block
       na dati nasa index.html ay naipasok na sa file na ito.

   CHANGES FROM ORIGINAL:
   - Converted CRLF → LF line endings
   - Inline styles extracted from index.html merged here
   - Added .toast-message.fade-out transition
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   1. HERO SECTION
   Yung malaking Canva embed na makikita sa taas ng login page
   ────────────────────────────────────────────────────────────── */
.hero-section {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 20px;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

/* Ang wrapper ng design/canva embed */
.design-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Hover effect — bahagyang lumalaki at lumilipad */
.design-container:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
  border-color: rgba(255, 255, 255, 0.8);
}

/* 16:9 aspect ratio para sa iframe */
.design-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* 16:9 ratio */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 17px;
}

/* Ang iframe mismo */
.design-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.5s ease;
}

.design-wrapper:hover iframe {
  transform: scale(1.05);
}

/* Caption/link sa ilalim ng design */
.design-caption {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: white;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.design-caption a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.design-caption a:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: white;
}

/* Yung "Featured Design" badge sa kanan ng design */
.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  color: rgb(180, 88, 88);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 5px;
}


/* ──────────────────────────────────────────────────────────────
   2. LOGIN CONTAINER
   Ang main wrapper ng login card
   ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 110px);

}


/* ──────────────────────────────────────────────────────────────
   3. LOGIN CARD
   Ang puting kahon na nakalagay ang login form
   ────────────────────────────────────────────────────────────── */
.login-card {
  background: #1c2434;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(231, 225, 225, 0.3);
  transition: transform 0.3s ease;
  width: 100%;
}

/* Bahagyang tumataas ang card kapag hovered */
.login-card:hover {
  transform: translateY(-5px);
}


/* ──────────────────────────────────────────────────────────────
   4. LOGO SECTION
   Ang calendar icon at mga heading sa loob ng login card
   ────────────────────────────────────────────────────────────── */
.logo-section {
  text-align: center;
  margin-bottom: 30px;

}

/* Ang malaking calendar icon sa gitna */
.calendar-icon {
  font-size: 50px;
  color: #6dcace;
  margin-bottom: 15px;
  animation: bounce 2s infinite;

}

/* "MEETING SCHEDULE" heading */
.logo-section h1 {
  color: #e2e8f0;
  font-family: cursive;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;

}

/* "SAVVYCORE GLOBAL, INC." subheading */
.logo-section h2 {
  color: #e2e8f0;
  font-family: cursive;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ──────────────────────────────────────────────────────────────
   5. LOGIN FORM — INPUT GROUPS
   Mga input fields at labels sa loob ng form
   ────────────────────────────────────────────────────────────── */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bawat grupo ng label + input */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  font-family: cursive;
}

.input-group label {
  color: #6dcace;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-group label i {
  color: #6dcace;
  font-size: 16px;
}

/* Ang text/password input fields at select dropdowns */
.input-group input,
.input-group select {
  padding: 12px 15px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  background: rgba(239, 231, 231, 0.844);

}

/* Blue border kapag naka-focus ang input */
.input-group input:focus,
.input-group select:focus {
  border-color: #4461d7;
  box-shadow: 0 0 0 4px rgba(250, 251, 255, 0.1);
  background: #6dcace !important;
}

/* Red border kapag may error — kasama ang shake animation */
.input-group.error input,
.input-group.error select {
  border-color: #ff4444;
  animation: shake 0.3s ease;
}

/* Green border kapag valid ang input */
.input-group.success input,
.input-group.success select {
  border-color: #44ff44;
}

/* Red error text sa ilalim ng input kapag mali */
.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: shake 0.3s ease;
}


/* ──────────────────────────────────────────────────────────────
   6. PASSWORD TOGGLE (Show/Hide Password)
   Yung eye icon sa loob ng password field
   ────────────────────────────────────────────────────────────── */
.toggle-password {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: #667eea;
}


/* ──────────────────────────────────────────────────────────────
   7. REMEMBER ME + FORGOT PASSWORD
   Yung row ng checkbox at forgot password link
   ────────────────────────────────────────────────────────────── */
.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Custom checkbox styling */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f7f7f7;
  cursor: pointer;
  user-select: none;
}

/* Itinatago ang default HTML checkbox */
.checkbox-container input {
  display: none;
}

/* Custom checkbox box */
.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #667eea;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

/* Kapag naka-check — nagiging purple ang background */
.checkbox-container input:checked+.checkmark {
  background-color: #667eea;
}

/* Checkmark (✓) icon kapag naka-check */
.checkbox-container input:checked+.checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* "Forgot Password?" link */
.forgot-link {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #764ba2;
  text-decoration: underline;
}


/* ──────────────────────────────────────────────────────────────
   8. LOGIN BUTTON
   Ang pangunahing button para mag-login
   ────────────────────────────────────────────────────────────── */
.login-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

/* Ripple effect — lumalawak na puting bilog kapag hovered */
.login-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.login-btn:hover::before {
  width: 300px;
  height: 300px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}


/* ──────────────────────────────────────────────────────────────
   9. REGISTER LINK
   "Don't have an account? Sign up here" link sa ibaba ng form
   ────────────────────────────────────────────────────────────── */
.register-link {
  text-align: center;
  margin-top: 10px;
}

.register-link a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Gumalaw ng konti pakanan kapag hovered */
.register-link a:hover {
  color: #764ba2;
  transform: translateX(5px);
}


/* ──────────────────────────────────────────────────────────────
   10. FORGOT PASSWORD MODAL
   Ang pop-up para sa reset password
   ────────────────────────────────────────────────────────────── */

/* Dark overlay sa background kapag bukas ang modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

/* Ang puting kahon ng modal */
.modal-content {
  background: white;
  margin: 15% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: slideDown 0.5s ease;
}

.modal-content h2 {
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-content h2 i {
  color: #667eea;
}

.modal-content p {
  color: #666;
  margin-bottom: 20px;
}

/* X button para isara ang modal */
.close,
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.close:hover,
.close-modal:hover {
  color: #667eea;
}

/* "Send Reset Link" button sa loob ng modal */
.reset-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.reset-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}


/* ──────────────────────────────────────────────────────────────
   11. RESPONSIVE — LOGIN PAGE
   ────────────────────────────────────────────────────────────── */

/* Tablet at mas maliit */
@media (max-width: 768px) {

  /* Mas maliit na hero section sa tablet */
  .hero-section {
    min-height: 300px;
    margin: 20px 0;
  }

  .design-container {
    width: 95%;
  }

  /* Mas maliit na badge */
  .floating-badge {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  /* Caption nagiging vertical sa tablet */
  .design-caption {
    flex-direction: column;
    gap: 5px;
  }

  .container {
    padding: 10px;
    margin-top: 60px;
    min-height: calc(100vh - 100px);
  }

  .login-card {
    padding: 30px 20px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-section {
    min-height: 250px;
  }

  /* Mas mataas ang aspect ratio sa napakaliit na screen */
  .design-wrapper {
    padding-top: 75%;
  }

  .logo-section h1 {
    font-size: 20px;
  }

  .logo-section h2 {
    font-size: 12px;
  }

  /* Ang remember/forgot row ay nagiging vertical */
  .remember-forgot {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Footer specific styles */


main {
  flex: 1;
  /* Optional: allows main content to grow and push footer down */
  padding: 20px;
}




/* ── Styles extracted from index.html <style> block ── */
/* ── Reset base.css body so the split-card layout works ── */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(135deg, #0b1441 0%, #233b7e 100%) !important;
  padding-top: 0 !important;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

.glass-panel {
  background: rgba(11, 20, 65, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255,255,255,0.07);
}

/* ── Navbar ── */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 40px;
}

.top-navbar .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-navbar .logo-wrap img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.top-navbar .logo-wrap span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0B1441;
  letter-spacing: -0.3px;
}

.top-navbar .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.top-navbar .nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #46464f;
  text-decoration: none;
  transition: color 0.2s;
}

.top-navbar .nav-links a:hover {
  color: #0B1441;
}

.top-navbar .nav-links a.nav-rooms-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0B1441;
  font-weight: 600;
}

.top-navbar .nav-links a.nav-rooms-link i {
  color: #6dcace;
  font-size: 0.9rem;
}

.top-navbar .nav-links a.nav-rooms-link:hover {
  color: #3b8fa0;
}

/* ── Main layout ── */
.page-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 24px;
  position: relative;
  z-index: 1;
}

/* ── Split card — NO preserve-3d, no lag ── */
.split-card {
  width: 100%;
  min-height: 640px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  display: flex;
  position: relative;
}

/* ── Left panel (Login form) ── */
.left-panel {
  width: 42%;
  min-width: 360px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 46px;
  box-sizing: border-box;
  overflow-y: auto;
  position: relative;
  z-index: 10;
  background-color: #0c04046a;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.split-card.left-folded .left-panel {
  opacity: 0;
  transform: translateX(-24px);
  pointer-events: none;
}

/* ── Right panel (carousel) ── */
.right-panel {
  flex: 1;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

/* ── Registration overlay — slides in from left ── */
.folded-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  min-width: 360px;
  height: 100%;
  background: linear-gradient(160deg, #0d1a4a 0%, #0a1230 100%);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  box-sizing: border-box;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-32px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 202, 206, 0.3) transparent;
}

.folded-content::-webkit-scrollbar {
  width: 4px;
}
.folded-content::-webkit-scrollbar-track { background: transparent; }
.folded-content::-webkit-scrollbar-thumb {
  background: rgba(109, 202, 206, 0.3);
  border-radius: 4px;
}

.left-folded-content {
  border-radius: 22px 0 0 22px;
}

.split-card.left-folded .left-folded-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s;
}

.right-folded-content {
  right: 0;
  left: auto;
  width: 58%;
  border-radius: 0 22px 22px 0;
  background: rgba(255, 255, 255, 0.95);
}

.split-card.right-folded .right-folded-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s;
}

/* Fold toggle button */
.fold-toggle-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.fold-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.88);
}

.reset-fold-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  font-size: 11px;
  cursor: pointer;
  z-index: 31;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.reset-fold-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ── Header icon box ── */
.icon-box {
  width: 90px;
  height: 90px;
  background: rgba(11, 20, 65, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
}

.field-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #efeff5;
  margin-bottom: 7px;
}

.login-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-bottom: 2.5px solid rgba(109, 202, 206, 0.5);
  border-radius: 10px;
  padding: 14px 46px 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #f1efef;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.login-input::placeholder {
  color: rgba(255,255,255,0.38);
}

.login-input:focus {
  border-color: rgba(109, 202, 206, 0.85);
  border-bottom-color: #6dcace;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(109, 202, 206, 0.12);
}

.input-group.error .login-input {
  border-bottom-color: #ff4444 !important;
}

.input-group.success .login-input {
  border-bottom-color: #22c55e !important;
}

.pw-wrap {
  position: relative;
}

.pw-wrap .eye-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  cursor: pointer;
}

.error-message {
  font-size: 0.75rem;
  color: #ff4444;
  margin-top: 3px;
}

.login-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a2f7f 0%, #2d52b8 100%);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(29, 58, 163, 0.35);
  position: relative;
  overflow: hidden;
}

.login-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.login-submit-btn:hover {
  background: linear-gradient(135deg, #233b7e 0%, #3d6bdf 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 58, 163, 0.55);
}

.login-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(29, 58, 163, 0.3);
}

.forgot-link-new {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6dcace;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.forgot-link-new:hover {
  color: #95f2f6;
  text-decoration: underline;
}

.signup-link {
  font-size: 0.875rem;
  color: #6dcace;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
}

.signup-link:hover {
  color: #95f2f6;
}

/* Right panel carousel */
.right-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.22), transparent);
  pointer-events: none;
}

.carousel-overlay-text {
  position: absolute;
  bottom: 68px;
  left: 44px;
  z-index: 20;
  color: #fff;
  max-width: 380px;
}

.carousel-badge {
  background: rgba(149, 242, 246, 0.18);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #95f2f6;
}

.carousel-controls {
  position: absolute;
  right: 36px;
  bottom: 44px;
  z-index: 20;
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 44px;
  z-index: 20;
  display: flex;
  gap: 8px;
}

.dot {
  height: 4px;
  border-radius: 999px;
  cursor: pointer;
}

.dot.active {
  width: 28px;
  background: #6dcace;
}

.dot.inactive {
  width: 14px;
  background: rgba(255, 255, 255, 0.35);
}

/* ── REGISTRATION FORM STYLES (from register.html) ── */
.register-card {
  background: #1c2434 !important;
  border-radius: 20px;
  padding: 30px;
}

.register-card .logo-section {
  text-align: center;
  margin-bottom: 30px;
}

.register-card .calendar-icon {
  font-size: 50px;
  color: #6dcace;
  margin-bottom: 15px;
}

.register-card .logo-section h1 {
  color: #e2e8f0;
  font-family: cursive;
  font-size: 24px;
  font-weight: 600;
}

.register-card .logo-section h2 {
  color: #e2e8f0;
  font-family: cursive;
  font-size: 14px;
}

.register-card .input-group {
  margin-bottom: 18px;
}

.register-card .input-group label {
  color: #6dcace;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.register-card .input-group input,
.register-card .input-group select {
  width: 100%;
  padding: 12px 15px;
  background: #111827 !important;
  border: 2px solid rgba(36, 58, 171, 0.918);
  border-radius: 10px;
  color: #dadee7;
  font-size: 14px;
}

.register-card .input-group input:focus,
.register-card .input-group select:focus {
  border-color: #667eea;
  outline: none;
}

.password-requirements {
  background: #111827;
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
}

.password-requirements p {
  color: #94a3b8;
  margin-bottom: 8px;
  font-size: 12px;
}

.password-requirements ul {
  list-style: none;
}

.password-requirements li {
  color: #999;
  font-size: 11px;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.password-requirements li.valid {
  color: #4CAF50;
}

.terms-checkbox {
  margin: 15px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #667eea;
  border-radius: 4px;
  position: relative;
}

.checkbox-container input:checked+.checkmark {
  background-color: #667eea;
}

.checkbox-container input:checked+.checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.terms-text {
  color: #94a3b8;
  font-size: 12px;
}

.terms-text a {
  color: #667eea;
  text-decoration: none;
}

.register-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.login-link {
  text-align: center;
  margin-top: 20px;
}

.login-link a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

/* ── ROOMS CONTENT (from schedule.html) ── */
.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
}

.room-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateX(5px);
}

.room-image {
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.small-meeting {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.big-conference {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.birdhouse {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.tanguile {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.lobby {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.room-icon {
  font-size: 48px;
  color: white;
  opacity: 0.8;
}

.room-content {
  padding: 18px;
}

.room-content h2 {
  font-size: 1.2rem;
  color: #0e1744;
  margin-bottom: 10px;
}

.room-description p {
  font-size: 0.8rem;
  color: #666;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-description i {
  width: 20px;
  color: #6dcace;
}

.schedule-room-btn {
  width: 100%;
  background: linear-gradient(135deg, #0e1744, #233b7e);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 12px;
  font-weight: 600;
}


/* Modal styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-box {
  background: #1c2434;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.modal-header h3 {
  color: #e2e8f0;
  margin: 0 0 3px;
}

.modal-header p {
  color: #94a3b8;
  margin: 0;
  font-size: 12px;
}

.modal-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  margin-bottom: 20px;
}

.modal-body label {
  color: #6dcace;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.modal-body input {
  width: 100%;
  padding: 12px;
  background: #111827;
  border: 1px solid #2d3748;
  border-radius: 10px;
  color: white;
}

.fp-info-box {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  padding: 12px;
  margin-top: 15px;
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  gap: 10px;
}

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-cancel-btn {
  background: transparent;
  border: 1px solid #2d3748;
  padding: 8px 20px;
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
}

.modal-submit-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .split-card {
    height: auto;
    flex-direction: column;
  }

  .left-panel {
    width: 100%;
    min-width: unset;
    min-height: unset;
    justify-content: flex-start;
  }

  .right-panel {
    display: none;
  }

  .fold-toggle-btn,
  .reset-fold-btn,
  .folded-content {
    display: none;
  }
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-50px, -50px) rotate(5deg);
  }
}

/* ================================================================
   REGISTRATION FORM — NEW DESIGN
   ================================================================ */

/* Registration panel inner scroll container */
.reg-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid rgba(109, 202, 206, 0.12);
  background: rgba(255,255,255,0.03);
  position: sticky;
  top: 0;
  z-index: 5;
}

.reg-header-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, #6dcace, #3b8fa0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-header-icon .material-symbols-outlined {
  font-size: 22px;
  color: #fff;
}

.reg-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f1efef;
  margin: 0 0 2px;
  letter-spacing: -0.3px;
}

.reg-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  color: #6dcace;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.reg-back-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s, color 0.2s;
}

.reg-back-btn:hover {
  background: rgba(109, 202, 206, 0.15);
  color: #6dcace;
}

/* Form body */
.reg-form {
  padding: 22px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 2-column row layout */
.reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Compact inputs for registration */
.reg-form .login-input {
  padding: 11px 38px 11px 13px;
  font-size: 0.87rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(109, 202, 206, 0.35);
  color: #f1efef;
}

.reg-form .login-input::placeholder {
  color: rgba(255,255,255,0.28);
  font-size: 0.82rem;
}

.reg-form .login-input:focus {
  border-color: rgba(109,202,206,0.6);
  border-bottom-color: #6dcace;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 2.5px rgba(109,202,206,0.10);
}

/* Select styling */
.reg-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #f1efef !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236dcace' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px !important;
}

.reg-select option {
  background: #0d1a4a;
  color: #f1efef;
}

/* Password strength chips */
.pw-strength-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}

.pw-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #6b7280;
  transition: all 0.2s ease;
}

.pw-chip i {
  font-size: 0.6rem;
}

.pw-chip.valid {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

/* Terms */
.reg-form .terms-checkbox {
  margin: 0;
}

.reg-form .checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #cbd5e1;
}

.reg-form .terms-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
}

.reg-form .terms-text a {
  color: #6dcace;
  text-decoration: none;
  font-weight: 600;
}

.reg-form .terms-text a:hover {
  text-decoration: underline;
}

/* Submit button — full width inside reg form */
.reg-form .login-submit-btn {
  margin-top: 4px;
  font-size: 0.92rem;
  padding: 14px;
}

/* Back to login link at bottom */
.reg-login-link {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.reg-login-link a {
  color: #6dcace;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}

.reg-login-link a:hover {
  color: #95f2f6;
}

/* Field label smaller in reg form */
.reg-form .field-label {
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.reg-form .field-label .material-symbols-outlined {
  font-size: 0.9rem;
}
