@charset "UTF-8";
:root {
  --text-hero: 70px;
  --text-title: 55px;
  --text-section: 44px;
  --text-block: 28px;
}

@media (max-width: 900px) {
  :root {
    --text-hero: 48px;
    --text-title: 42px;
    --text-section: 30px;
    --text-block: 24px;
  }
}
@media (max-width: 360px) {
  :root {
    --text-hero: 40px;
    --text-section: 24px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 32px;
  font-family: "tablet-gothic-narrow", "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-indent: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(77, 42, 73, 0.4);
  border-radius: 6px;
  background: transparent;
  color: #4D2A49;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover, .btn:focus-visible {
  background: #E8C124;
  border-color: #E8C124;
  color: #4D2A49;
}
.btn.solid {
  background: #E8C124;
  border-color: #E8C124;
  color: #4D2A49;
}
.btn.solid:hover, .btn.solid:focus-visible {
  background: #4D2A49;
  border-color: #4D2A49;
  color: #E8C124;
}
.btn.danger {
  border-color: #9E2136;
  color: #9E2136;
}
.btn.danger:hover, .btn.danger:focus-visible {
  background: #9E2136;
  border-color: #9E2136;
  color: #FFFFFF;
}
.btn.sm {
  min-height: 38px;
  padding: 7px 18px;
  font-size: 13.5px;
}
.btn .icon {
  text-decoration: none;
}
@media (max-width: 360px) {
  .btn {
    padding-inline: 16px;
  }
}

header.site .btn:not(.solid):not(.danger),
footer.site .btn:not(.solid):not(.danger),
.section.dark .btn:not(.solid):not(.danger),
.strip.plum .btn:not(.solid):not(.danger),
.home-hero .btn:not(.solid):not(.danger) {
  border-color: rgba(241, 236, 229, 0.4);
  color: #E8C124;
}
header.site .btn:not(.solid):not(.danger):hover, header.site .btn:not(.solid):not(.danger):focus-visible,
footer.site .btn:not(.solid):not(.danger):hover,
footer.site .btn:not(.solid):not(.danger):focus-visible,
.section.dark .btn:not(.solid):not(.danger):hover,
.section.dark .btn:not(.solid):not(.danger):focus-visible,
.strip.plum .btn:not(.solid):not(.danger):hover,
.strip.plum .btn:not(.solid):not(.danger):focus-visible,
.home-hero .btn:not(.solid):not(.danger):hover,
.home-hero .btn:not(.solid):not(.danger):focus-visible {
  background: #E8C124;
  border-color: #E8C124;
  color: #4D2A49;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button:not(:disabled) {
  cursor: pointer;
}

body.auth-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0 24px;
  background: #FFFFFF;
  color: #444444;
  font-family: "abril-text", Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
}

.auth-layout main {
  flex: 1 0 auto;
}
.auth-layout .auth-card {
  max-width: 540px;
  margin: clamp(40px, 8vw, 72px) auto;
}
.auth-layout .card {
  background: #FFFFFF;
  border: 1px solid #E4E1E4;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(28, 15, 26, 0.16);
}
.auth-layout .card-body {
  padding: clamp(24px, 6vw, 40px);
}
.auth-layout .auth-branding {
  margin-bottom: 20px;
}
.auth-layout .auth-logo-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.auth-layout .auth-logo {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
}
.auth-layout i.icon.with-caption {
  margin-right: 0.45em;
}
.auth-layout .card-title {
  margin: 0 0 20px;
  font-family: "canto-pen", serif;
  font-weight: 700;
  font-size: var(--text-block);
  line-height: 1.2;
  color: #4D2A49;
}
.auth-layout .card-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  background: #E8C124;
  margin: 14px auto 0;
}
.auth-layout p {
  margin: 0 0 20px;
}
.auth-layout p:last-child {
  margin-bottom: 0;
}
.auth-layout .text-center {
  text-align: center;
}
.auth-layout .text-end {
  text-align: right;
}
.auth-layout .d-grid {
  display: grid;
}
.auth-layout .d-flex {
  display: flex;
}
.auth-layout .justify-content-center {
  justify-content: center;
}

.auth-foot {
  flex: none;
  padding: 32px 0 40px;
  text-align: center;
  font-family: "tablet-gothic-narrow", "Helvetica Neue", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
}

.auth-layout .form-floating {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.auth-layout .form-floating > label {
  order: -1;
}
.auth-layout .form-control {
  font-family: "abril-text", Georgia, serif;
  font-size: 15px;
  min-width: 0;
  color: #1C0F1A;
  background: #fff;
  border: 1px solid #d9d0b8;
  border-radius: 6px;
  padding: 10px 12px;
}
.auth-layout .form-control:focus {
  outline: none;
  border-color: #E8C124;
  box-shadow: 0 0 0 3px rgba(232, 193, 36, 0.25);
}
.auth-layout .form-control::placeholder {
  color: #9A9198;
}
.auth-layout .form-control {
  width: 100%;
}
.auth-layout .form-control.is-invalid {
  border-color: #9E2136;
}
.auth-layout .form-label {
  font-family: "tablet-gothic-narrow", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #666666;
}
.auth-layout .form-control::placeholder {
  color: transparent;
}
.auth-layout .form-text {
  margin: 0;
  font-size: 14px;
  color: #666666;
}
.auth-layout .invalid-feedback {
  margin: 0;
  font-size: 14px;
  color: #9E2136;
}
.auth-layout .card-body .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.auth-layout .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.auth-layout .form-check-label {
  font-size: 16px;
  color: #444444;
  cursor: pointer;
}
.auth-layout .form-switch .form-check-input {
  appearance: none;
  flex: none;
  position: relative;
  width: 34px;
  height: 20px;
  margin: 0;
  border: 1px solid rgba(77, 42, 73, 0.4);
  border-radius: 10px;
  background: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.auth-layout .form-switch .form-check-input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4D2A49;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.auth-layout .form-switch .form-check-input:checked {
  background: #4D2A49;
  border-color: #4D2A49;
}
.auth-layout .form-switch .form-check-input:checked::after {
  transform: translateX(14px);
  background: #FFFFFF;
}
.auth-layout .form-switch .form-check-input:focus-visible {
  outline: 2px solid #E8C124;
  outline-offset: 2px;
}
.auth-layout .card-body a:where(:not(.btn, .auth-logo-link)) {
  color: #4D2A49;
  text-decoration: underline;
  text-decoration-color: rgba(77, 42, 73, 0.4);
  text-underline-offset: 3px;
}
.auth-layout .card-body a:where(:not(.btn, .auth-logo-link)):hover {
  text-decoration-color: #4D2A49;
}
.auth-layout hr {
  border: 0;
  border-top: 1px solid #E4E1E4;
  margin: 26px 0;
  opacity: 1;
}

.auth-layout .flash-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
}
.auth-layout .flash,
.auth-layout .alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-left-width: 4px;
  border-radius: 6px;
  font-size: 14px;
}
.auth-layout .flash .icon,
.auth-layout .alert .icon {
  flex: none;
  margin-top: 2px;
}
.auth-layout .flash .text,
.auth-layout .alert .text {
  flex: 1 1 auto;
}
.auth-layout .flash h4,
.auth-layout .alert h4 {
  margin: 0 0 6px;
  font-family: "tablet-gothic-narrow", "Helvetica Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: inherit;
}
.auth-layout .flash ul,
.auth-layout .alert ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.auth-layout .flash a,
.auth-layout .alert a {
  color: inherit;
  text-decoration: none;
}
.auth-layout .alert-danger {
  border-color: rgba(158, 33, 54, 0.35);
  background: rgba(158, 33, 54, 0.05);
  color: #9E2136;
}
.auth-layout .alert-success,
.auth-layout .alert-info {
  border-color: rgba(77, 42, 73, 0.3);
  background: rgba(77, 42, 73, 0.05);
  color: #3A2036;
}
.auth-layout .close.btn-close {
  flex: none;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: none;
  opacity: 0.6;
  cursor: pointer;
}
.auth-layout .close.btn-close::before {
  content: "×";
  display: block;
  font-size: 18px;
  line-height: 1;
}
.auth-layout .close.btn-close:hover {
  opacity: 1;
}
