:root {
  --kk-red: #e53935;
  --kk-red-dark: #b91c1c;
  --kk-gold: #f7b731;
  --kk-ink: #171717;
  --kk-muted: #6b7280;
  --kk-soft: #fff7ed;
  --kk-border: rgba(23, 23, 23, .09);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--kk-ink);
  background: #fffaf4;
  overflow-x: hidden;
}

.navbar {
  background: rgba(255, 250, 244, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--kk-border);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kk-red), var(--kk-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(229, 57, 53, .22);
}

.navbar-brand span {
  font-weight: 800;
  letter-spacing: -.04em;
}

.btn-koko {
  background: var(--kk-red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(229, 57, 53, .24);
}

.btn-koko:hover {
  background: var(--kk-red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-soft {
  background: #fff;
  border: 1px solid var(--kk-border);
  color: var(--kk-ink);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
}

.btn-koko.btn-sm,
.btn-soft.btn-sm {
  padding: 8px 14px;
  font-size: .875rem;
}

.home-hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 14% 20%, rgba(247, 183, 49, .22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(229, 57, 53, .18), transparent 26%),
    linear-gradient(180deg, #fff7ed 0%, #fffaf4 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--kk-border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kk-red-dark);
  box-shadow: 0 12px 28px rgba(23, 23, 23, .06);
}

.home-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 800;
  margin: 24px 0;
}

.home-hero h1 .accent {
  color: var(--kk-red);
}

.home-hero p {
  color: var(--kk-muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
}

.hero-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--kk-border);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(23, 23, 23, .1);
  position: relative;
}

.mock-browser {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 24px;
  overflow: hidden;
}

.mock-top {
  height: 52px;
  background: #171717;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: .36;
}

.mock-body {
  padding: 22px;
}

.paste-box {
  background: #fff7ed;
  border: 1px dashed rgba(229, 57, 53, .35);
  border-radius: 18px;
  padding: 16px;
  font-size: 14px;
  color: var(--kk-muted);
}

.home-variant-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--kk-border);
  border-radius: 18px;
  margin-top: 12px;
  background: #fff;
}

.thumb {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe4d6, #ffd166);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kk-red-dark);
  font-size: 22px;
  flex: 0 0 auto;
}

.section-pad {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--kk-muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
}

.feature-card,
.step-card,
.calc-card,
.faq-card {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(23, 23, 23, .055);
  height: 100%;
}

.icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0e6;
  color: var(--kk-red);
  font-size: 24px;
  margin-bottom: 18px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--kk-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.calc-wrap {
  background: #171717;
  color: #fff;
  border-radius: 36px;
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.calc-wrap::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(247, 183, 49, .22);
  right: -70px;
  top: -90px;
  filter: blur(8px);
}

.calc-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1;
}

.calc-line span:first-child {
  color: rgba(255, 255, 255, .68);
}

.calc-input-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  justify-content: flex-end;
  color: #fff;
  font-weight: 800;
}

.calc-input-wrap input {
  width: 118px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 10px 12px;
  text-align: right;
  font-weight: 800;
  outline: 0;
}

.calc-input-wrap input:focus {
  border-color: var(--kk-gold);
  box-shadow: 0 0 0 .2rem rgba(247, 183, 49, .14);
}

.calc-input-wrap input::-webkit-outer-spin-button,
.calc-input-wrap input::-webkit-inner-spin-button {
  margin: 0;
}

.calc-total {
  font-size: 30px;
  font-weight: 800;
  color: var(--kk-gold);
}

.cta-box {
  border-radius: 38px;
  padding: 54px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .22), transparent 24%),
    linear-gradient(135deg, var(--kk-red), #7f1d1d);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.cta-copy {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.8;
}

.footer {
  padding: 40px 0;
  color: var(--kk-muted);
  border-top: 1px solid var(--kk-border);
  background: #fff;
}

.auth-page {
  background:
    radial-gradient(circle at top left, rgba(247, 183, 49, .15), transparent 25%),
    radial-gradient(circle at top right, rgba(229, 57, 53, .12), transparent 20%),
    #fffaf4;
  min-height: 100vh;
}

.auth-wrap {
  padding: 140px 0 80px;
}

.login-wrap {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.register-card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--kk-border);
  border-radius: 36px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(23, 23, 23, .08);
}

.login-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--kk-border);
  border-radius: 36px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(23, 23, 23, .08);
}

.auth-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 800;
  margin-bottom: 18px;
}

.auth-subtitle {
  color: var(--kk-muted);
  font-size: 18px;
  line-height: 1.8;
}

.auth-page .hero-badge {
  margin-bottom: 18px;
}

.auth-page .form-label {
  font-weight: 700;
  margin-bottom: 10px;
}

.auth-page .form-control,
.auth-page .form-select {
  border-radius: 18px;
  border: 1px solid var(--kk-border);
  padding: 14px 18px;
  min-height: 58px;
  font-size: 15px;
}

.auth-page textarea.form-control {
  min-height: 120px;
}

.auth-page .form-control:focus,
.auth-page .form-select:focus {
  border-color: var(--kk-red);
  box-shadow: 0 0 0 .2rem rgba(229, 57, 53, .12);
}

.section-divider {
  margin: 20px 0 8px;
  padding: 18px 22px;
  border-radius: 22px;
  background: var(--kk-soft);
  border: 1px solid rgba(247, 183, 49, .2);
}

.section-divider h5 {
  font-weight: 800;
  margin-bottom: 4px;
}

.section-divider p {
  color: var(--kk-muted);
  margin: 0;
}

.login-link {
  color: var(--kk-red);
  font-weight: 700;
  text-decoration: none;
}

.register-link,
.forgot-link {
  color: var(--kk-red);
  font-weight: 700;
  text-decoration: none;
}

.register-sidebar {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.floating-box {
  background: #171717;
  color: #fff;
  border-radius: 28px;
  padding: 26px;
  height: auto;
  position: relative;
  overflow: hidden;
}

.floating-box::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(247, 183, 49, .14);
  right: -80px;
  top: -80px;
}

.floating-box h4 {
  font-weight: 800;
  margin-bottom: 18px;
}

.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--kk-gold);
}

.info-row p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.side-card {
  background: #171717;
  color: #fff;
  border-radius: 34px;
  padding: 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(23, 23, 23, .12);
}

.side-card::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(247, 183, 49, .16);
  right: -90px;
  top: -90px;
}

.side-card h2 {
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.status-preview {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.status-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 14px;
}

.status-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(247, 183, 49, .12);
  color: var(--kk-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}

.status-item p {
  color: rgba(255, 255, 255, .7);
  margin: 3px 0 0;
  line-height: 1.6;
  font-size: 14px;
}

.mini-note {
  background: var(--kk-soft);
  border: 1px solid rgba(247, 183, 49, .2);
  color: #92400e;
  border-radius: 20px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
}

.app-page {
  background:
    radial-gradient(circle at top left, rgba(247, 183, 49, .12), transparent 24%),
    radial-gradient(circle at top right, rgba(229, 57, 53, .10), transparent 22%),
    #fffaf4;
  min-height: 100vh;
}

.app-navbar .nav-link {
  font-weight: 600;
}

.app-navbar .nav-link:hover {
  color: var(--kk-red);
}

.app-main {
  padding: 34px 0 70px;
}

.app-main > .container > .d-flex:first-child,
.app-main > .container > .panel:first-child {
  margin-top: 10px;
}

.app-main h3 {
  font-weight: 800;
  letter-spacing: -.035em;
}

.app-main h5 {
  font-weight: 800;
}

.app-page .btn-success {
  background: var(--kk-red);
  border-color: var(--kk-red);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(229, 57, 53, .18);
}

.app-page .btn-success:hover,
.app-page .btn-success:focus {
  background: var(--kk-red-dark);
  border-color: var(--kk-red-dark);
  color: #fff;
}

.app-page .btn-outline-success {
  border-color: rgba(229, 57, 53, .35);
  color: var(--kk-red);
  border-radius: 999px;
  font-weight: 700;
}

.app-page .btn-outline-success:hover,
.app-page .btn-outline-success:focus {
  background: var(--kk-red);
  border-color: var(--kk-red);
  color: #fff;
}

.app-page .btn-outline-danger {
  border-radius: 999px;
  font-weight: 700;
}

.app-page .text-success {
  color: var(--kk-red) !important;
}

.app-page .alert-success {
  background: #fff0e6;
  color: #7f1d1d;
}

.app-page .alert-info {
  background: #fff7ed;
  color: #92400e;
}

.app-page .alert {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(23, 23, 23, .045);
}

.panel {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(23, 23, 23, .055);
}

.app-page .form-label {
  font-weight: 700;
}

.app-page .form-control,
.app-page .form-select {
  border-radius: 16px;
  border: 1px solid var(--kk-border);
  min-height: 48px;
}

.app-page .form-control:focus,
.app-page .form-select:focus {
  border-color: var(--kk-red);
  box-shadow: 0 0 0 .2rem rgba(229, 57, 53, .12);
}

.app-page .table {
  --bs-table-bg: transparent;
}

.app-page .table thead th {
  color: var(--kk-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom-color: var(--kk-border);
}

.app-page .table td,
.app-page .table th {
  vertical-align: middle;
  border-color: rgba(23, 23, 23, .07);
}

.app-page .badge.text-bg-secondary {
  background: #171717 !important;
  color: #fff !important;
}

.app-page .badge.text-bg-warning {
  background: var(--kk-gold) !important;
  color: #3f2d00 !important;
}

.dashboard-menu-card {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 26px;
  color: var(--kk-ink);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(23, 23, 23, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dashboard-menu-card:hover {
  color: var(--kk-ink);
  border-color: rgba(229, 57, 53, .22);
  box-shadow: 0 22px 55px rgba(229, 57, 53, .10);
  transform: translateY(-2px);
}

.dashboard-menu-card h5 {
  margin: 0 0 4px;
}

.dashboard-menu-card p {
  margin: 0;
  color: var(--kk-muted);
}

.dashboard-menu-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff0e6;
  color: var(--kk-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 23px;
}

.dashboard-search {
  min-width: min(100%, 460px);
}

.dashboard-search .input-group-text {
  background: #fff;
  border-color: var(--kk-border);
  border-radius: 999px 0 0 999px;
  color: var(--kk-muted);
}

.dashboard-search .form-control {
  border-left: 0;
}

.kokocuan-pagination .page-link {
  border: 1px solid var(--kk-border);
  color: var(--kk-red);
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 700;
}

.kokocuan-pagination .page-item.active .page-link {
  background: var(--kk-red);
  border-color: var(--kk-red);
  color: #fff;
}

.kokocuan-pagination .page-item.disabled .page-link {
  color: var(--kk-muted);
  background: rgba(255, 255, 255, .7);
}

.admin-hero-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(247, 183, 49, .18), transparent 24%),
    linear-gradient(135deg, #171717, #3f1111);
  color: #fff;
  box-shadow: 0 28px 80px rgba(23, 23, 23, .12);
}

.admin-hero-panel .hero-badge {
  color: #7f1d1d;
}

.admin-hero-panel h3 {
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
}

.admin-hero-panel p {
  color: rgba(255, 255, 255, .72);
  max-width: 620px;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-metric-card {
  height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--kk-border);
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 23, 23, .055);
  position: relative;
  overflow: hidden;
}

.admin-metric-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -58px;
  top: -58px;
  background: rgba(229, 57, 53, .08);
}

.admin-metric-card.gold::after {
  background: rgba(247, 183, 49, .18);
}

.admin-metric-card.dark {
  background: #171717;
  color: #fff;
}

.admin-metric-card.dark span,
.admin-metric-card.dark small {
  color: rgba(255, 255, 255, .7);
}

.admin-metric-card span {
  display: block;
  color: var(--kk-muted);
  font-weight: 700;
  margin-top: 18px;
}

.admin-metric-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 8px 0;
}

.admin-metric-card small {
  color: var(--kk-muted);
}

.admin-metric-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff0e6;
  color: var(--kk-red);
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.admin-metric-card.gold .admin-metric-icon {
  background: #fff8db;
  color: #a16207;
}

.admin-metric-card.dark .admin-metric-icon {
  background: rgba(255, 255, 255, .08);
  color: var(--kk-gold);
}

.admin-pipeline {
  display: grid;
  gap: 16px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}

.pipeline-label strong {
  display: block;
}

.pipeline-label span {
  color: var(--kk-muted);
  font-size: .9rem;
}

.pipeline-track {
  height: 14px;
  border-radius: 999px;
  background: #fff0e6;
  overflow: hidden;
}

.pipeline-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--kk-red), var(--kk-gold));
}

.admin-finance-card {
  border-radius: 30px;
  padding: 28px;
  background: #171717;
  color: #fff;
  box-shadow: 0 28px 80px rgba(23, 23, 23, .12);
}

.admin-finance-card > .d-flex span {
  color: rgba(255, 255, 255, .65);
  font-weight: 700;
}

.admin-finance-card > .d-flex strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.04em;
}

.admin-finance-card > .d-flex i {
  color: var(--kk-gold);
  font-size: 30px;
}

.finance-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.finance-line span {
  color: rgba(255, 255, 255, .68);
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--kk-border);
  border-radius: 20px;
  background: #fffaf4;
  color: var(--kk-ink);
  text-decoration: none;
}

.admin-list-item:hover {
  color: var(--kk-ink);
  border-color: rgba(229, 57, 53, .25);
}

.admin-list-item span {
  display: block;
  color: var(--kk-muted);
  font-size: .9rem;
  margin-top: 3px;
}

.admin-list.compact .admin-list-item {
  padding: 12px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.admin-quick-actions {
  display: grid;
  gap: 10px;
}

.admin-quick-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 18px;
  background: #fff0e6;
  color: var(--kk-red-dark);
  font-weight: 800;
  text-decoration: none;
}

.admin-quick-actions a:hover {
  background: var(--kk-red);
  color: #fff;
}

.product-link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid var(--kk-border);
  border-radius: 20px;
  background: #fff7ed;
}

.product-link-eyebrow {
  color: var(--kk-red-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
}

.product-link-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--kk-ink);
  overflow-wrap: anywhere;
}

.product-link-title i {
  color: var(--kk-red);
}

.product-link-note {
  color: var(--kk-muted);
  margin-top: 5px;
  font-size: .92rem;
}

.product-link-actions {
  width: min(100%, 260px);
  flex: 0 0 260px;
}

@media (max-width: 575px) {
  .admin-hero-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .admin-hero-actions {
    justify-content: flex-start;
  }

  .pipeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-link-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-link-actions {
    width: 100%;
    flex: 0 0 auto;
  }
}

.status-badge {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .75rem;
}

.variant-image-preview {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 1px solid #d7dde2;
  border-radius: 6px;
  background: #f8fafc;
}

.money-total {
  font-size: 1.35rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .home-hero {
    padding-top: 120px;
  }

  .hero-card {
    margin-top: 40px;
  }

  .cta-box {
    padding: 34px;
  }

  .register-card {
    padding: 28px;
  }

  .login-wrap {
    align-items: flex-start;
  }

  .login-card,
  .side-card {
    padding: 28px;
  }

  .register-sidebar {
    position: static;
  }

  .floating-box,
  .side-card {
    margin-top: 28px;
  }
}
