
    .login-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
      z-index: 10;
    }

    .login-card {
      width: 100%;
      max-width: 420px;
      padding: 3rem;
      background: rgba(20, 20, 25, 0.4);
      backdrop-filter: blur(30px) saturate(180%);
      -webkit-backdrop-filter: blur(30px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .login-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      justify-content: center;
    }

    .login-logo img {
      width: 48px;
      height: 48px;
      object-fit: contain;
    }

    .login-logo-text {
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
    }

    .login-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      text-align: center;
      color: #ffffff;
    }

    .login-subtitle {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .form-input {
      width: 100%;
      padding: 1rem;
      background: rgba(15, 15, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
      outline: none;
    }

    .form-input:focus {
      border-color: #FF6B35;
      background: rgba(15, 15, 20, 0.8);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .login-button {
      width: 100%;
      padding: 1rem 2rem;
      background: #FF6B35;
      color: #000000;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      margin-top: 0.5rem;
    }

    .login-button:hover {
      background: #FF8C42;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }

    .login-button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .error-message {
      padding: 1rem;
      background: rgba(244, 67, 54, 0.2);
      border: 1px solid rgba(244, 67, 54, 0.5);
      border-radius: 12px;
      color: #f44336;
      font-size: 0.9rem;
      text-align: center;
      display: none;
    }

    .error-message.show {
      display: block;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.9rem;
      margin-top: 1.5rem;
      transition: color 0.3s ease;
    }

    .back-link:hover {
      color: #FF6B35;
    }

    .loading-spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 2px solid rgba(0, 0, 0, 0.3);
      border-top-color: #000000;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin: 0 auto;
    }

    .login-button:disabled .loading-spinner {
      display: block;
    }

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

    .bypass-toggle-container {
      display: flex;
      justify-content: center;
      margin-bottom: 1.5rem;
      padding: 0.75rem;
      background: rgba(255, 107, 53, 0.1);
      border: 1px solid rgba(255, 107, 53, 0.3);
      border-radius: 12px;
    }

    .bypass-toggle {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
      user-select: none;
    }

    .bypass-toggle input[type="checkbox"] {
      display: none;
    }

    .bypass-slider {
      position: relative;
      width: 48px;
      height: 24px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      transition: all 0.3s ease;
    }

    .bypass-slider::before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
      top: 3px;
      left: 3px;
      transition: all 0.3s ease;
    }

    .bypass-toggle input[type="checkbox"]:checked + .bypass-slider {
      background: #FF6B35;
    }

    .bypass-toggle input[type="checkbox"]:checked + .bypass-slider::before {
      transform: translateX(24px);
      background: #ffffff;
    }

    .bypass-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
    }
  
    .password-input-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }

    .password-input-wrap .form-input {
      padding-right: 4.5rem;
    }

    .password-toggle-button {
      position: absolute;
      right: 0.75rem;
      border: 0;
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      border-radius: 8px;
      transition: color 0.2s ease, background-color 0.2s ease;
    }

    .password-toggle-button:hover {
      color: #FF6B35;
      background: rgba(255, 107, 53, 0.12);
    }
