    .content {
          padding: 20px;
        }

    /* Overlay backdrop */
    .sec-auth-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
   
    width: auto;
    padding: 0.75rem 1rem;
    background-color: #00000000;
    color: #ffffff;
    font-weight: 500;
    border-radius: 0.5rem;
    border: 1px solid #ffffff38;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
  }
  
  .sec-auth-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }


input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
  
  .sec-auth-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
  }
  
  .sec-auth-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(6px);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* Dialog box */
    .dialog {
      background: rgb(0, 0, 0);
      border: 1px solid rgba(95, 95, 95, 0.5);
      border-radius: 12px;
      padding: 24px 28px;
      width: 350px;
      max-width: 90%;
      text-align: left;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
      transform: scale(0.96);
      opacity: 0;
      transition: all 0.25s ease;
    }

    .overlay.show .dialog {
      transform: scale(1);
      opacity: 1;
    }

    .dialog h2 {
      font-family: "Geist", sans-serif;
      font-optical-sizing: auto;
      font-weight: 800;
      font-style: normal;
      margin: 0 0 12px;
      font-size: 1.2rem;
    }

    .dialog p {
      margin: 0 0 24px;
      font-size: 0.95rem;
      color: #ccc;
      font-family: "Geist", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }

    .dialog .buttons {
      font-family: "Geist", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .dialog .close-btn {
      background: #2f2f2f;
      color: #ccc;
    }

    .dialog .close-btn:hover {
      cursor: pointer;
    }

    .dialog .primary-btn {
      background: white;
      color: black;
    }

    .dialog .primary-btn:hover {
      background: rgb(197, 197, 197);
    }
    
.dialog.large {
  width: 600px;
  max-width: 95%;
}

.plans {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.plan-card {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  color: #eee;
  transition: transform 0.2s ease;
}

.plan-card:hover {
  transform: scale(1.05);
  background: #2a2a2a;
}

.plan-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.plan-card p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #bbb;
}
