/* ============================================================
   HostingPro - Client Register (ISOLADO)
   Prefixo: hprg-
   Arquivo: hprg-register.css
   ============================================================ */

.hprg-page{
  max-width: 1120px;
  margin: 26px auto 90px;
  padding: 0 14px;
}

.hprg-head{
  margin: 6px 0 18px;
}

.hprg-title{
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 40px;
  line-height: 1.05;
}

.hprg-sub{
  color: #64748b;
  font-weight: 650;
}

/* Card */
.hprg-card{
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  overflow: hidden;
}

.hprg-card + .hprg-card{ margin-top: 16px; }

.hprg-card-h{
  padding: 18px 20px;
  border-bottom: 1px solid #eef2f7;
}

.hprg-card-h-title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.hprg-card-b{
  padding: 18px 20px 22px;
}

/* Grid */
.hprg-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 860px){
  .hprg-grid{
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
  }
}

/* Field */
.hprg-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hprg-label{
  font-weight: 850;
  color: #0f172a;
  margin: 0;
}

.hprg-control{
  position: relative;
}

.hprg-icon{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.hprg-input,
.hprg-select{
  width: 100%;
  border: 1px solid #d6dee8;
  border-radius: 14px;
  padding: 12px 14px 12px 56px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.hprg-input:focus,
.hprg-select:focus{
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148,163,184,.25);
}

.hprg-help{
  color: #64748b;
  font-weight: 650;
  font-size: 13px;
}

/* Column helpers (12-col) */
.hprg-col-12{ grid-column: 1 / -1; }
@media (min-width: 860px){
  .hprg-col-6{ grid-column: span 6; }
  .hprg-col-4{ grid-column: span 4; }
  .hprg-col-5{ grid-column: span 5; }
  .hprg-col-3{ grid-column: span 3; }
  .hprg-col-12{ grid-column: span 12; }
}

/* Password strength area */
.hprg-pass-wrap{
  display: grid;
  gap: 10px;
}
@media (min-width: 860px){
  .hprg-pass-wrap{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.hprg-pass-meter{
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 12px 10px;
}

.hprg-pass-meter .progress{
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e8f0;
}

.hprg-pass-meter .progress-bar{
  height: 10px;
}

/* Actions */
.hprg-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.hprg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.hprg-btn-primary{
  background: #4f46e5;
  color: #fff;
}

.hprg-btn-primary:hover{ filter: brightness(.95); }

.hprg-btn-ghost{
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0f172a;
}

.hprg-btn-ghost:hover{ background:#e9eef5; }

/* Blocks: marketing + tos */
.hprg-box{
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}

.hprg-tos{
  border: 1px solid #fecaca;
  background: #fff1f2;
}

.hprg-tos-title{
  font-weight: 950;
  color: #991b1b;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}