@font-face {
  font-family: empathy-icons;
  src: url(/empathy/empathy-icons.ttf);
}

@font-face {
  font-family: 'Exposure';
  src: url('205TF-Exposure.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Exposure';
  src: url('205TF-Exposure-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

*, html, h1, h2, h3, h4, h5, h6, input, button {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html, body {
  height: 100%;
}

body {
  color: #33302e;
  background-color: #f8f8f8;
  font-weight: 400;
  letter-spacing: 0.01875rem;
  overflow: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  flex: 1;
  padding: 3.5rem 0 2rem;
}

.privacy-policy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  box-sizing: border-box;
  background-color: #f8f8f8;
  z-index: 10;
}

.topbar-logo {
  width: 5.5rem;
}

.logo {
  display: flex;
  align-self: center;
  width: 10rem;
  margin-bottom: 1.5rem;
}

.alert {
  width: 25rem;
  border-radius: 1rem;
  margin: 0.625rem 0;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.625rem 0.9375rem 0.9375rem;
  text-align: center;
}

.alert-error {
  background-color: rgba(212, 74, 111, 0.8);
}

.alert-success {
  background-color: rgba(130, 194, 163, 1);
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-in-out;
}

.title {
  align-self: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.field {
  display: flex;
  position: relative;
  width: 25rem;
  margin-top: 1.875rem;
}

.icon {
  color: #33302e;
  font-size: 1.125rem;
  position: absolute;
  top: calc(50% - 0.5625rem);
  left: 0.6875rem;
}

.eicon {
  font-family: empathy-icons !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.input {
  background-color: #ffffff;
  color: #33302e;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: 0.01875rem;
  flex-grow: 1;
  border-radius: 1.5625rem;
  padding: 0.625rem 1.875rem 0.625rem 2.5rem;
  border: 1px solid #dbdbdb;
  outline: none;
  transition: border-color 0.2s;
}

.input:focus {
  border-color: #33302e;
}

.input:disabled {
  cursor: not-allowed;
  background-color: #e5e5e5;
  color: #757575;
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  outline: none;
  cursor: pointer;
  transition-property: border-color, background-color, color, opacity;
  transition-duration: 0.2s;
  border-radius: 1.125rem;
  height: 2.25rem;
  flex-shrink: 0;
  width: 25rem;
  margin-top: 1.875rem;
  border: 1px solid transparent;
  background-color: #33302e;
  color: #fff;
}

.button:hover {
  background-color: #252220;
}

.button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.box {
  width: 25rem;
  display: flex;
  justify-content: flex-end;
}

.reset-login {
  text-decoration: none;
  margin-top: 1.875rem;
  color: #33302e;
  font-size: 0.625rem;
  letter-spacing: 0.1875rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-transform: uppercase;
  cursor: pointer;
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #33302e;
  border-radius: 0.25rem;
  margin-right: 0.625rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

input[type="checkbox"]:checked {
  background-color: #33302e;
  border-color: #33302e;
}

input[type="checkbox"]:checked::before {
  content: "\2713";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
}

.label {
  color: #33302e;
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.25rem;
  align-self: center;
}

.anchor {
  color: #33302e;
  cursor: pointer;
}

.anchor:hover {
  color: #252220;
}

.joint-field-wrapper {
  display: flex;
  flex-direction: row;
  width: 25rem;
  gap: 0.625rem;
}

.joint-field {
  display: flex;
  position: relative;
  margin-top: 1.875rem;
}

.joint-field > input {
  width: 100%;
}

.success-message {
  width: 28rem;
  margin: 0.625rem 0;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 450px) {
  .alert,
  .button,
  .field,
  .input,
  .title,
  .reset-login,
  .box,
  .password-requirements {
    max-width: 90%;
  }
}

.password-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  width: 25rem;
  margin-top: 0.75rem;
}

.requirement {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b0b0b0;
  transition: color 0.2s;
}

.requirement.met {
  color: #2eac6b;
}

.req-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.input.mismatch:focus {
  border-color: #e94b65;
}

.input.match:focus {
  border-color: #2eac6b;
}

.powered-by-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #33302e;
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
  flex-shrink: 0;
}

.powered-by-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.powered-by-text {
  font-size: 0.875rem;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.powered-by-logo {
  width: 10rem;
  filter: brightness(0) invert(1);
}

.powered-by-copyright {
  font-size: 0.875rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.04em;
}

/* ── Login split layout ── */

.login-layout {
  display: flex;
  height: 100vh;
  background-color: #f8f8f8;
  overflow: hidden;
}

.login-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 64px;
  min-width: 0;
}

.login-left .topbar-logo {
  width: 82px;
  height: auto;
  flex-shrink: 0;
}

.login-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 48px 48px;
}

.login-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 358px;
}

.login-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.login-heading .heading-title {
  font-family: 'Exposure', sans-serif;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.72px;
  color: #171717;
  margin: 0;
  font-weight: 400;
}

.login-heading .heading-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #94877c;
  margin: 0;
}

.login-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.login-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.login-field {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid rgba(31, 30, 29, 0.3);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.login-field:focus-within {
  border-color: #171717;
}

.login-field-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-left: 12px;
  padding-right: 8px;
  font-size: 16px;
  line-height: 1;
  color: #73726c;
  pointer-events: none;
}

.login-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 100%;
  margin: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 12px 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #33302e;
  outline: none;
  box-sizing: border-box;
}

.login-input::placeholder {
  color: #73726c;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #171717;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  height: 36px;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19.6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-btn:hover {
  background-color: #2a2a2a;
}

.login-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.login-forgot {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #171717;
  text-decoration: none;
  text-align: center;
  display: block;
}

.login-forgot:hover {
  text-decoration: underline;
}

.login-privacy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(150, 137, 126, 0.8);
  text-align: center;
}

.login-privacy a {
  color: rgba(150, 137, 126, 0.8);
  text-decoration: underline;
}

.login-alert {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.login-alert-error {
  background-color: rgba(212, 74, 111, 0.1);
  color: #d44a6f;
  border: 1px solid rgba(212, 74, 111, 0.2);
}

.login-alert-success {
  background-color: rgba(46, 172, 107, 0.1);
  color: #2eac6b;
  border: 1px solid rgba(46, 172, 107, 0.2);
}

/* Right panel */

.login-right {
  flex: 1;
  padding: 32px;
  min-width: 0;
}

.login-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.login-showcase-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}


.login-showcase-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px 56px;
  box-sizing: border-box;
}

.login-showcase-logo {
  flex-shrink: 0;
  height: 74px;
  width: auto;
}

.login-showcase-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.login-showcase-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-showcase-headline h2 {
  font-family: 'Exposure', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 57px;
  letter-spacing: -2px;
  color: #171717;
  margin: 0;
}

.login-showcase-headline p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #969696;
  margin: 0;
}

.login-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.login-pillar {
  border-left: 1px solid rgb(202 211 206);
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-pillar h3 {
  font-family: 'Exposure', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -1.2px;
  color: #6a6969;
  margin: 0;
}

.login-pillar p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #969696;
  margin: 0;
}

.login-pillar-small p {
  width: 45%;
}

.login-pillar-medium p {
  width: 70%;
}

.login-showcase-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  width: 100%;
}

.login-showcase-footer hr {
  flex: 1;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
}

.login-showcase-footer span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: #776a5f;
  white-space: nowrap;
}

/* ── Signup extras ── */

.login-joint-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.login-joint-row .login-field {
  flex: 1;
  min-width: 0;
}

.login-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.login-checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(31, 30, 29, 0.3);
  margin: 0;
  flex-shrink: 0;
}

.login-checkbox-row label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #171717;
  line-height: 1.6;
}

.login-checkbox-row label a {
  color: #171717;
  text-decoration: underline;
}

.login-password-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  width: 100%;
  margin-top: -8px;
}

.login-password-requirements .requirement {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b0b0b0;
  transition: color 0.2s;
}

.login-password-requirements .requirement.met {
  color: #2eac6b;
}

.login-password-requirements .req-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.login-field:has(.login-input.mismatch:focus) {
  border-color: #e94b65;
}

.login-field:has(.login-input.match:focus) {
  border-color: #2eac6b;
}

.login-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 358px;
  animation: fadeIn 1s ease-in-out;
}

.login-success-view .login-alert {
  width: 100%;
}

.login-success-view p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #33302e;
  line-height: 1.6;
  margin: 0;
}

.login-success-view a {
  color: #171717;
  font-weight: 600;
  text-decoration: underline;
}

/* Login responsive */

@media only screen and (max-width: 1440px) {
  .login-showcase-bg {
    object-position: -25px;
  }
}

@media only screen and (max-width: 1024px) {
  .login-right {
    display: none;
  }

  .login-left {
    padding: 32px;
  }
}

@media only screen and (max-width: 480px) {
  .login-left {
    padding: 24px 16px;
  }

  .login-content {
    width: 100%;
  }

  .login-heading .heading-title {
    font-size: 28px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
