* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #000103;
  background: #f1f4f8;
}

[hidden] {
  display: none !important;
}

.account-topbar {
  background: #002741;
  color: #fff;
}

.account-topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: stretch;
}

.account-brand {
  display: none;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.account-tab {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.account-tab.is-active {
  background: rgba(0, 0, 0, 0.08);
}

.account-hero {
  height: 120px;
  background:
    linear-gradient(
      110deg,
      rgba(1, 72, 119, 0.96),
      rgba(1, 94, 110, 0.96)
    );
}

.account-main {
  width: min(980px, calc(100% - 28px));
  margin: -2px auto 50px;
}

.account-card {
  padding: 34px 28px 42px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(5, 18, 40, 0.08);
}

.account-eyebrow {
  margin: 0 0 28px 102px;
  color: #5e6e83;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-profile-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.account-avatar {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #138d69;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.account-profile-content {
  min-width: 0;
}

.account-profile-content h1 {
  margin: -8px 0 22px;
  font-size: 1.65rem;
}

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

.account-field strong,
.account-field span {
  display: block;
}

.account-field strong {
  margin-bottom: 2px;
  font-weight: 800;
}

.account-field span {
  overflow-wrap: anywhere;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.account-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
}

.account-btn-light {
  background: #fff;
  color: #081b3a;
  border-color: #d2dbea;
}

.account-btn-light:hover {
  background: #f7f9fc;
}

.account-btn-danger {
  background: #d2292e;
  color: #fff;
}

.account-btn-danger:hover {
  background: #b92126;
}

.account-btn-primary {
  background: #203f9e;
  color: #fff;
}

.account-message {
  margin: 20px 0 0;
  color: #5c2cab;
  font-weight: 600;
}

.account-state {
  text-align: center;
}

.account-state h1 {
  margin-top: 0;
}

@media (min-width: 760px) {
  .account-brand {
    display: inline-flex;
  }

  .account-tab {
    margin-left: auto;
  }

  .account-card {
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media (max-width: 560px) {
  .account-hero {
    height: 80px;
  }

  .account-main {
    width: min(100% - 18px, 980px);
  }

  .account-card {
    padding: 26px 20px 30px;
    border-radius: 14px;
  }

  .account-eyebrow {
    margin-left: 0;
    margin-bottom: 22px;
  }

  .account-profile-row {
    flex-direction: column;
  }

  .account-profile-content h1 {
    margin-top: 0;
  }

  .account-actions {
    flex-direction: column;
  }

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


.account-card-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.account-back-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #444754;
  border-radius: 12px;
  background: #181a22;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.account-back-button:hover {
  background: #232631;
}