/* =========================================
   PASSWORD GENERATOR PAGE
========================================= */

.password-page{
  max-width:920px;
  margin:25px auto 55px;
  padding:0 14px;
}




/* =========================================
   PAGE TOP
========================================= */

.password-top{
  margin-top:-10px;
  margin-bottom:2px;
}

.password-top h1{
  font-size:24px;
  line-height:1.15;
  color:#0f172a;
  margin-bottom:0;
  font-family:Poppins, Inter, sans-serif;
}

/* REMOVE DESCRIPTION */
.intro-text{
  display:none;
}





/* =========================================
   RESULT BOX
========================================= */

.password-result-box{
  background:#f1eff0;
  border-radius:10px;
  padding:12px;
  border:1px solid #e1e1e1;
  margin-top:15px;
  margin-bottom:4px;
}

.warning-text{
  color:#e53935;
  font-size:13px;
  margin-bottom:12px;
}

.result-row{
  display:grid;
  grid-template-columns:180px 1fr 110px;
  gap:12px;
  align-items:center;
}

.result-label{
  font-size:16px;
  font-weight:700;
  color:#000;
}

.result-row input{
  width:100%;
  height:42px;
  border:1px solid #cfcfcf;
  border-radius:5px;
  padding:0 12px;
  font-size:15px;
  outline:none;
  background:#fff;
}

.copy-btn{
  height:42px;
  border:none;
  border-radius:5px;
  background:#4f8a1f;
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

.password-strength-link{
  margin-top:10px;
}

.password-strength-link a{
  font-size:13px;
  color:#2c6cb0;
  text-decoration:none;
}





/* =========================================
   GENERATOR BOX
========================================= */

.generator-box,
.advanced-generator{
  background:#f1eff0;
  border-radius:10px;
  border:1px solid #e1e1e1;
  padding:12px 12px 16px;
  margin-bottom:10px;
    margin-top:15px;
}

.advanced-generator{
  display:none;
}

.advanced-generator.active{
  display:block;
}





/* =========================================
   HEADING
========================================= */

.generator-heading{
  background:#5688b7;
  color:#fff;
  border-radius:12px;
  padding:9px 15px;
  font-size:15px;
  font-weight:700;
  margin-bottom:14px;
}





/* =========================================
   ROWS
========================================= */

.generator-row{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:10px;
  align-items:center;
  margin-bottom:10px;
}

.generator-label{
  font-size:15px;
  font-weight:700;
  color:#000;
  line-height:1.35;
}

.generator-control{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}





/* =========================================
   INPUTS
========================================= */

.generator-control input[type="number"],
.generator-control input[type="text"]{
  width:150px;
  height:38px;
  border:1px solid #cfcfcf;
  border-radius:5px;
  padding:0 10px;
  font-size:14px;
  background:#fff;
  outline:none;
}





/* =========================================
   CHECKBOXES
========================================= */

.checkbox-label{
  display:flex;
  align-items:center;
  gap:10px;
}

.checkbox-label input{
  width:16px;
  height:16px;
  accent-color:#5f9136;
}

.checkbox-label span{
  font-size:14px;
  color:#111827;
}





/* =========================================
   BUTTONS
========================================= */

.generator-buttons,
.advanced-buttons{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}

.generate-btn{
  min-width:210px;
  height:44px;
  border:none;
  border-radius:5px;
  background:#6a93c8;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.generate-btn:hover{
  background:#5686c0;
}

.advanced-btn{
  min-width:210px;
  height:44px;
  border:none;
  border-radius:5px;
  background:#6d6d67;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.green-btn{
  min-width:120px;
}





/* =========================================
   GENERATED PASSWORDS
========================================= */

.generated-passwords-box{
  margin-top:16px;
}

.generated-title{
  font-size:15px;
  font-weight:700;
  margin-bottom:10px;
}

#multiple-password-output{
  width:100%;
  min-height:95px;
  border:1px solid #cfcfcf;
  border-radius:5px;
  padding:12px;
  resize:vertical;
  font-size:14px;
  line-height:1.6;
  background:#fff;
  outline:none;
}





/* =========================================
   NOTE
========================================= */

.tool-note{
  margin-top:12px;
  color:#2f6ba7;
  font-size:13px;
}





/* =========================================
   FAQ SECTION
========================================= */

.faq-section{
  max-width:920px;
  margin:40px auto;
  padding:0 16px;
}

.faq-section h2{
  font-size:28px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:28px;
}

.faq-question{
  font-size:21px;
  font-weight:700;
  color:#1e3a8a;
  margin:36px 0 14px;
}

.faq-answer{
  font-size:15px;
  line-height:1.85;
  color:#1f2937;
}

.faq-answer p{
  margin-bottom:12px;
}

.faq-answer strong{
  color:#0f172a;
  font-weight:700;
}

.faq-answer a{
  color:#2563eb;
  text-decoration:none;
  border-bottom:1px solid rgba(37,99,235,.35);
}





/* =========================================
   TABLET
========================================= */

@media(max-width:768px){

  .result-row{
    grid-template-columns:1fr;
  }

  .generator-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .generator-control input[type="number"],
  .generator-control input[type="text"]{
    width:100%;
  }

  .generator-buttons,
  .advanced-buttons{
    flex-direction:column;
  }

  .generate-btn,
  .advanced-btn,
  .green-btn{
    width:100%;
    min-width:100%;
  }

}





/* =========================================
   MOBILE
========================================= */

@media(max-width:520px){

  .password-top h1{
    font-size:24px;
  }

  .generator-heading{
    font-size:14px;
  }

  .generator-label{
    font-size:14px;
  }

  .checkbox-label span{
    font-size:13px;
  }

  .faq-section h2{
    font-size:24px;
  }

  .faq-question{
    font-size:18px;
  }

  .faq-answer{
    font-size:14px;
  }

}









.seo-info-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 4px solid #facc15;
    background: rgba(250, 204, 21, 0.08);
    border-radius: 8px;
    line-height: 1.7;
}

.seo-warning-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 8px;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.faq-answer a:hover {
    opacity: 0.9;
}

.password-top .intro-text {
    max-width: 900px;
}

.tool-note {
    line-height: 1.7;
}