/* =========================================================
   Ri MARKETING — tvoj nalog / client login page
   Built on top of styles.css (tokens, header, footer, buttons)
   ========================================================= */

.account-hero {
  padding: 170px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.account-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.account-hero .container { position: relative; z-index: 1; }

.account-hero h1 {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 16px;
}

.account-hero p {
  color: var(--text-muted);
  font-size: 16.5px;
  max-width: 540px;
  margin: 0 auto;
}

.account-section { padding: 10px 0 130px; }

.account-box {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.account-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.account-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-box h2 {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 25px;
  color: var(--text);
  margin-bottom: 10px;
}

.account-lead {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.account-box .field {
  text-align: left;
  margin-bottom: 22px;
}

.account-box input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: border-color var(--ease) .25s, background var(--ease) .25s;
}

.account-box input[type="password"]::placeholder { color: var(--text-faint); }

.account-box input[type="password"]:focus {
  outline: none;
  border-color: var(--primary-2);
  background: rgba(168, 85, 247, 0.06);
}

.account-box .btn { width: 100%; }

.account-note {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text-faint);
}

#gallery-frame {
  display: none;
  width: 100%;
  height: 80vh;
  border: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 40px;
  background: var(--surface);
}

@media (max-width: 600px) {
  .account-hero { padding: 150px 0 40px; }
  .account-box { padding: 34px 24px; }
}
