/* divtodiv — Customer Portal login (UI only, 20250615) */

.customers-portal-page .hero-sec {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 80px;
  position: relative;
  overflow: hidden;
}

.customers-portal-page .hero-sec::before {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 68%);
  filter: blur(50px);
  pointer-events: none;
}

.cpp-wrap {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
}

.cpp-mark {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border-radius: 14px;
  object-fit: cover;
}

.cpp-eyebrow {
  display: block;
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.cpp-title {
  margin: 0 0 10px;
  font-family: var(--font_arapey, Georgia, "Times New Roman", serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.cpp-sub {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.cpp-card {
  padding: 28px 28px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(22, 23, 28, 0.92), rgba(10, 10, 12, 0.96));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cpp-field {
  margin-bottom: 18px;
}

.cpp-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.cpp-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cpp-field input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.cpp-field input:focus {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.cpp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 22px;
}

.cpp-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  user-select: none;
}

.cpp-remember input {
  width: 14px;
  height: 14px;
  accent-color: #fff;
}

.cpp-forgot {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cpp-forgot:hover {
  color: rgba(255, 255, 255, 0.75);
}

.cpp-submit {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cpp-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.cpp-submit:active {
  transform: translateY(0);
}

.cpp-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

.cpp-note a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cpp-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cpp-back:hover {
  color: rgba(255, 255, 255, 0.72);
}

.cpp-toast {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cpp-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .customers-portal-page .hero-sec {
    min-height: calc(100vh - 140px);
    padding-top: 32px;
  }

  .cpp-card {
    padding: 22px 18px 18px;
  }
}
