
/* SECTION */
.section-box{
  background:#fafafa;
  border:1px solid #eee;
  border-radius:10px;
  padding:18px;
  margin-bottom:18px;
}

/* LABEL */
.label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

/* INPUT */
.input-box{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}

/* CHECKBOX */
.option{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
  font-size:14px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:12px;
}

/* CARD */
.stat-card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  padding:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
  animation:fade .3s ease-in;
}

/* PASSWORD */
.word{
  font-size:16px;
  /* font-weight:bold; */
  word-break:break-all;
}

/* COPY */
.copy-btn{
  padding:6px 10px;
  font-size:12px;
  background:#0a3d62;
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}

/* BUTTON */
.btns{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:15px;
}

.app{
  padding:12px 20px;
  background:linear-gradient(135deg,#0a3d62,#07517d);
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}

/* RESULT */
.result-box{
  margin-top:20px;
  background:#fafafa;
  border:1px solid #ddd;
  border-radius:8px;
  padding:15px;
  min-height:120px;
}

/* LOADER */
.loader{
  text-align:center;
  animation:pulse 1s infinite;
}

@keyframes pulse{
  0%{opacity:.3}
  50%{opacity:1}
  100%{opacity:.3}
}

@keyframes fade{
  from{
    opacity:0;
    transform:scale(.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}
