/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  font-size: 16px;
}

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

article.login-docs {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pagecreate-header {
  text-align: center;
  margin-bottom: 40px;
}

.pagecreate-header h1 {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 12px;
}

.pagecreate-header p {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.6;
}

.pagecreate-section {
  margin-bottom: 40px;
}

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

h2::before {
  content: "🧩";
  font-size: 1.2rem;
  color: #10b981;
}

h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 10px;
}

p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #374151;
}
.pagecreate-step-content{
    font-size: 1.2rem;
}
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.pagecreate-highlight {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 500;
}

.pagecreate-step {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.pagecreate-step-content p {
  margin-bottom: 10px;
}

.pagecreate-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  article.login-docs {
    padding: 20px;
    margin: 58px 0 0 0 !important;
  }
  .pagecreate-header h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .pagecreate-step {
    padding: 15px 20px;
  }
}

@media (min-width: 1025px) {
  article.login-docs {
    margin-left: calc(260px + 40px);
  }
}

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