/*Btn Toogle*/
  .switch {
    cursor: pointer;
 }
  .switch input {
    display: none;
 }
  .switch input + span {
    width: 48px;
    height: 28px;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    background: #ff4651;
    box-shadow: 0 8px 16px -1px rgba(255, 70, 81, .2);
 }
  .switch input + span:before, .switch input + span:after {
    content: '';
    display: block;
    position: absolute;
    transition: all 0.3s ease;
 }
  .switch input + span:before {
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    border: 5px solid #fff;
 }
  .switch input + span:after {
    top: 5px;
    left: 32px;
    width: 6px;
    height: 18px;
    border-radius: 40%;
    transform-origin: 50% 50%;
    background: #fff;
    opacity: 0;
 }
  .switch input + span:active {
    transform: scale(0.92);
 }
  .switch input:checked + span {
    background: #48ea8b;
    box-shadow: 0 8px 16px -1px rgba(72, 234, 139, .2);
 }
  .switch input:checked + span:before {
    width: 0px;
    border-radius: 3px;
    margin-left: 27px;
    border-width: 3px;
    background: #fff;
 }
  .switch input:checked + span:after {
    animation: blobChecked 0.35s linear forwards 0.2s;
 }
  .switch input:not(:checked) + span:before {
    animation: blob 0.85s linear forwards 0.2s;
 }
  @keyframes blob {
    0%, 100% {
      transform: scale(1);
   }
    30% {
      transform: scale(1.12, 0.94);
   }
    60% {
      transform: scale(0.96, 1.06);
   }
 }
  @keyframes blobChecked {
    0% {
      opacity: 1;
      transform: scaleX(1);
   }
    30% {
      transform: scaleX(1.44);
   }
    70% {
      transform: scaleX(1.18);
   }
    50%, 99% {
      transform: scaleX(1);
      opacity: 1;
   }
    100% {
      transform: scaleX(1);
      opacity: 0;
   }
 }

/* Cinewave Login Redesign */
.cinewave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../images/login_bg.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
}

.cinewave-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.2); /* Dark overlay */
    backdrop-filter: blur(1px); /* Additional blur for cinematic feel */
}

.glass-card {
    background: rgba(30, 41, 59, 0.45) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: #fff;
}

.glass-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cinewave-logo {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    margin-bottom: 10px;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.neon-input {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.neon-input:focus {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(0, 255, 255, 0.8) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2) !important;
}

.neon-btn {
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 20px !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4) !important;
}

.neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6) !important;
}

.neon-checkbox {
    background-color: transparent !important;
    border: 1px solid rgba(0, 255, 255, 0.5) !important;
}

.neon-checkbox:checked {
    background-color: #06b6d4 !important;
    border-color: #06b6d4 !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}