/* El body ahora es un contenedor flex vertical de toda la página */
body {
  font-family: 'SF Pro Display', 'SF Pro', system-ui, -apple-system, BlinkMacSystemFont,
  'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  padding: var(--spacing-xxl);
  background-color: var(--color-base-100);
}

.box {
  width: 100%;
  max-width: 900px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-medium);
  line-height: 40px;
}

.footer {
  width: 100%;
  background-color:var(--color-base-200);
  padding: var(--spacing-m) 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer img {
  height: 32px;
}

.footer-copy {
  font-size: 10px;
  color: var(--color-base-700);
}

.title {
  font-size: 22px;
  font-weight: 600;
}

.title-error {
  font-size: 60px;
  font-weight: 600;
  color: var(--color-brand-default);
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hidden {
  overflow: hidden;
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

/* Texts */

.mono-regular {
  font-family: var(--font-family-mono);
  font-size: 12px;
  line-height: 12px;
  font-weight: var(--font-weight-regular);
}
.body-regular {
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 16px;
  font-weight: var(--font-weight-regular);
}
.body-emphasized {
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 16px;
  font-weight: var(--font-weight-semibold);
}
.subheadline-regular {
  font-family: var(--font-family);
  font-size: 11px;
  line-height: 14px;
  font-weight: var(--font-weight-regular);
}
.subheadline-emphasized {
  font-family: var(--font-family);
  font-size: 11px;
  line-height: 14px;
  font-weight: var(--font-weight-semibold);
}
.headline-regular {
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 16px;
  font-weight: var(--font-weight-bold);
}
.headline-emphasized {
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 16px;
  font-weight: var(--font-weight-heavy);
}
.title-1-regular {
  font-family: var(--font-family);
  font-size: 22px;
  line-height: 26px;
  font-weight: var(--font-weight-regular);
}
.title-1-emphasized {
  font-family: var(--font-family);
  font-size: 22px;
  line-height: 26px;
  font-weight: var(--font-weight-bold);
}
.title-2-regular {
  font-family: var(--font-family);
  font-size: 17px;
  line-height: 22px;
  font-weight: var(--font-weight-regular);
}
.title-2-emphasized {
  font-family: var(--font-family);
  font-size: 17px;
  line-height: 22px;
  font-weight: var(--font-weight-bold);
}
.title-3-regular {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 20px;
  font-weight: var(--font-weight-regular);
}
.title-3-emphasized {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 20px;
  font-weight: var(--font-weight-semibold);
}
.title-regular {
  font-family: var(--font-family);
  font-size: 26px;
  line-height: 35px;
  font-weight: var(--font-weight-regular);
}
.title-emphasized {
  font-family: var(--font-family);
  font-size: 26px;
  line-height: 35px;
  font-weight: var(--font-weight-bold);
}
.callout-regular {
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 15px;
  font-weight: var(--font-weight-regular);
}
.callout-emphasized {
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 15px;
  font-weight: var(--font-weight-semibold);
}
.subheading-regular {
  font-family: var(--font-family);
  font-size: 11px;
  line-height: 14px;
  font-weight: var(--font-weight-regular);
}
.subheading-emphasized {
  font-family: var(--font-family);
  font-size: 11px;
  line-height: 14px;
  font-weight: var(--font-weight-semibold);
}
.footnote-regular {
  font-family: var(--font-family);
  font-size: 10px;
  line-height: 13px;
  font-weight: var(--font-weight-regular);
}
.footnote-emphasized {
  font-family: var(--font-family);
  font-size: 10px;
  line-height: 13px;
  font-weight: var(--font-weight-semibold);
}
.caption-regular {
  font-family: var(--font-family);
  font-size: 10px;
  line-height: 13px;
  font-weight: var(--font-weight-regular);
}
.caption-emphasized {
  font-family: var(--font-family);
  font-size: 10px;
  line-height: 13px;
  font-weight: var(--font-weight-medium);
}
.color-primary {
  color: var(--color-text-05);
}

.color-secondary {
  color: var(--color-text-04);
}

.color-light {
  color: var(--color-text-03);
}

.color-negative {
  color: var(--color-text-01);
}

.color-info {
  color: var(--color-info-default);
}

.color-success {
  color: var(--color-success-default);
}

.color-warning {
  color: var(--color-warning-default);
}

.color-error {
  color: var(--color-error-default);
}

.color-brand {
  color: var(--color-brand-default);
}
