
    img {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}

    article.login-docs {
    background: #ffffff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 2;
      border: 1px solid rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      margin-right: 0.75rem;
  }

    article header {
      text-align: center;
      margin-bottom: 30px;
    }

    article header h1 {
      font-size: 2rem;
      color: #111827;
      margin-bottom: 10px;
    }

    article header p {
      font-size: 1.1rem;
      color: #4b5563;
    }

    a {
      color: #2563eb;
      text-decoration: none;
      font-weight: 500;
    }

    a:hover {
      text-decoration: underline;
    }

    section {
      margin-bottom: 40px;
    }

    h2 {
      font-size: 1.5rem;
      color: #111827;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    h2::before {
      content: "✅";
      font-size: 1.2rem;
    }

    p {
      margin-bottom: 10px;
    }

    ul {
      margin: 10px 0 10px 20px;
      list-style-type: disc;
    }

    .note {
      background: #eff6ff;
      border-left: 4px solid #2563eb;
      padding: 15px 20px;
      border-radius: 8px;
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .highlight {
      background: #fef3c7;
      border-left: 4px solid #f59e0b;
      padding: 12px 16px;
      border-radius: 8px;
      margin: 10px 0;
    }

    code {
      background: #f3f4f6;
      padding: 3px 6px;
      border-radius: 4px;
      font-family: monospace;
      color: #111827;
    }

    footer {
      text-align: center;
      font-size: 0.95rem;
      color: #6b7280;
      margin-top: 40px;
      border-top: 1px solid #e5e7eb;
      padding-top: 20px;
    }
@media(max-width:768px){
    article.login-docs{
        margin: 58px 0px 0px 0px !important;
        padding: 20px;
    }
    article header h1{
        font-size: 1.5rem ;
    }
    h2{
        font-size: 1.2rem;
    }
    li{
        margin-bottom: 0.5rem;
    }
    section{
        font-size: 1.05rem;
    }
}
@media (min-width: 1025px) {
  article.login-docs {
    margin-left: calc(260px + 40px); /* default sidebar width + spacing */
  }
}

@media (max-width: 1024px) {
  article.login-docs {
    margin-left: 0;
  }
}
