@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 400;
  src: url("../dashboard/assets/fonts/ibm-plex-sans-arabic-400.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
  src: url("../dashboard/assets/fonts/ibm-plex-sans-arabic-700.ttf") format("truetype");
}

:root {
  --bg: #f6faf8;
  --surface: #ffffff;
  --ink: #0e2018;
  --muted: #60736c;
  --line: #dbe7e1;
  --green: #0f3d2e;
  --mint: #19c486;
  --soft: #eaf6f1;
  --shadow: 0 24px 80px rgba(15, 61, 46, 0.14);
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 12%, rgba(25, 196, 134, 0.18), transparent 30%),
    var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
p {
  margin: 0;
}

.signup-shell {
  min-height: 100svh;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}

.brand img {
  width: 230px;
  display: block;
}

.brand-card,
.signup-card {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.brand-card {
  margin-top: 28px;
  min-height: 560px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 20%, rgba(25, 196, 134, 0.36), transparent 28%),
    linear-gradient(145deg, #06271d, #0f3d2e 70%, #041711);
  box-shadow: var(--shadow);
}

.status-pill,
.eyebrow {
  color: var(--mint);
  font-weight: 800;
}

.status-pill {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
}

.brand-card h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.15;
}

.brand-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
  font-size: 18px;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checks span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.signup-card {
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f2f6f4;
  color: var(--muted);
  font-weight: 800;
}

.steps span.active {
  color: var(--green);
  background: var(--soft);
}

.form {
  display: none;
  gap: 14px;
}

.form.active {
  display: grid;
}

.form header {
  margin-bottom: 8px;
}

.form h2 {
  margin-top: 6px;
  font-size: 34px;
}

.form header p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfdfc;
}

input:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(25, 196, 134, 0.14);
}

button {
  font: inherit;
  cursor: pointer;
}

.primary-button,
.ghost-button {
  min-height: 52px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mint), #0fa06f);
}

.ghost-button {
  border: 1px solid var(--line);
  color: var(--green);
  background: #ffffff;
}

.form-status {
  min-height: 28px;
  color: var(--green);
  font-weight: 800;
  line-height: 1.7;
}

.form-status.error {
  color: #ad3d35;
}

@media (max-width: 860px) {
  .signup-shell {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .signup-shell {
    width: calc(100% - 28px);
    padding: 18px 0;
  }

  .brand img {
    width: 164px;
  }

  .brand-card,
  .signup-card {
    padding: 18px;
  }

  .brand-card h1 {
    font-size: 34px;
  }
}
