:root {
  --blue: #075ee5;
  --navy: #12213c;
  --muted: #697386;
  --line: #dfe5ee;
  --green: #00c85a;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #f5f7fb;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
}
.account-header {
  height: 86px;
  padding: 0 max(28px, 6vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.account-header img {
  width: 190px;
  max-height: 58px;
  object-fit: contain;
}
.back-link {
  color: #536174;
  font-weight: 700;
  text-decoration: none;
}
.account-shell {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 520px);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  max-width: 1250px;
  margin: auto;
  padding: 58px 32px;
}
.account-intro {
  padding: 40px;
}
.kicker,
.panel-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--blue);
}
.account-intro h1 {
  font: 800 clamp(40px, 5vw, 64px) / 1.02 Manrope;
  margin: 20px 0;
  letter-spacing: -2.7px;
}
.account-intro > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}
.account-intro ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.account-intro li {
  font-weight: 700;
}
.account-intro li b {
  color: var(--green);
  margin-right: 8px;
}
.account-intro small {
  color: #8791a0;
}
.account-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 36px 28px;
  box-shadow: 0 24px 70px rgba(25, 45, 78, 0.12);
}
.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  margin: 0 -20px 32px;
}
.account-tabs button {
  height: 58px;
  border: 0;
  background: none;
  color: #7b8594;
  font-weight: 800;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.account-tabs button.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.account-panel h2 {
  font: 800 28px Manrope;
  margin: 9px 0;
}
.account-panel > p {
  margin: 0 0 25px;
  color: var(--muted);
}
form {
  display: grid;
  gap: 17px;
}
form > label {
  font-size: 13px;
  font-weight: 700;
}
input[type='email'],
input[type='password'],
input[type='text'],
input[type='tel'] {
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #ccd5e1;
  border-radius: 8px;
  margin-top: 7px;
  padding: 0 14px;
  font: 15px 'DM Sans';
  outline: 0;
}
input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 94, 229, 0.1);
}
.password-field {
  display: flex;
  align-items: center;
  position: relative;
}
.password-field input {
  padding-right: 56px;
}
.password-field button {
  position: absolute;
  right: 10px;
  top: 17px;
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.form-options {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.form-options label {
  font-weight: 600;
}
.form-options button {
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}
.primary-action {
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(7, 94, 229, 0.22);
}
.consent {
  font-weight: 500;
  line-height: 1.5;
}
.consent a {
  color: var(--blue);
}
.account-feedback {
  display: none;
  margin-top: 18px;
  padding: 12px;
  border-radius: 7px;
  background: #eaf7ef;
  color: #14723d;
  font-size: 13px;
}
.account-feedback.show {
  display: block;
}
.secure-note {
  text-align: center;
  color: #7c8795;
  font-size: 11px;
  margin-top: 22px;
}
@media (max-width: 850px) {
  .account-shell {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }
  .account-intro {
    padding: 15px;
  }
  .account-intro h1 {
    font-size: 40px;
  }
  .account-card {
    padding: 12px 24px 25px;
  }
}
@media (max-width: 520px) {
  .account-header {
    height: 72px;
    padding: 0 18px;
  }
  .account-header img {
    width: 145px;
  }
  .back-link {
    font-size: 12px;
  }
  .account-intro ul {
    grid-template-columns: 1fr;
  }
  .account-card {
    border-radius: 12px;
  }
  .form-options {
    align-items: flex-start;
    gap: 10px;
  }
  .account-shell {
    gap: 25px;
  }
}

.business-registration{margin:0 0 18px;padding:14px;border:1px solid #dbe3ee;border-radius:10px}.business-registration legend{font-weight:800;color:#173b78}.business-registration-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.business-registration-grid label{display:grid;gap:5px;font-size:12px;font-weight:700}.business-registration-grid .wide{grid-column:1/-1}@media(max-width:620px){.business-registration-grid{grid-template-columns:1fr}}
