.name {
  padding: 20px 0;
  padding-bottom: 47px;
}

body.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(24, 67, 90, 0.18), transparent 38%),
    linear-gradient(135deg, #eef4f8 0%, #dfe9ef 48%, #f5f8fb 100%);
}

.auth-shell {
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-shell--compact {
  padding-top: 32px;
  padding-bottom: 32px;
}

.auth-card {
  --auth-card-height: min(760px, calc(100vh - 48px));
  width: min(1180px, 100%);
  min-height: var(--auth-card-height);
  border: 1px solid rgba(24, 67, 90, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(19, 45, 61, 0.14);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.auth-panel {
  background: rgba(255, 255, 255, 0.98);
}

.auth-panel__body {
  padding: 34px 0 !important;
}

.auth-panel .uk-position-center {
  width: 100%;
  max-width: 460px;
}

.auth-branding {
  padding-bottom: 20px;
}

.auth-branding img {
  display: block;
  width: min(238px, 74%);
  height: auto;
}

.auth-eyebrow {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a516d;
}

.auth-eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.auth-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.15;
  color: #15384c;
}

.auth-subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5f7180;
}

.auth-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #385567;
}

.auth-feedback {
  margin-top: 4px;
  min-height: 0;
}

.auth-meta-row {
  gap: 16px;
  flex-wrap: wrap;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d6473;
  font-size: 13px;
}

.auth-text-link,
.auth-text-link:hover,
.auth-text-link:focus {
  color: #18435a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.auth-actions {
  text-align: center;
}

.auth-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(27, 179, 149, 0.12);
  color: #15755f;
  font-size: 13px;
  line-height: 1.55;
}

.auth-hero {
  position: relative;
}

.auth-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 34, 47, 0.16) 0%, rgba(14, 41, 58, 0.58) 100%);
}

.auth-hero__content {
  position: absolute;
  right: 42px;
  bottom: 40px;
  left: 42px;
  z-index: 2;
  color: #ffffff;
}

.auth-hero__title {
  margin: 0 0 12px;
  font-size: 1.95rem;
  line-height: 1.18;
  color: #ffffff;
}

.auth-hero__text {
  margin: 0;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.name h3 {
  margin: 0;
  font-size: 2rem;
}

@media screen and (max-width: 640px) {
  .auth-shell {
    padding: 0;
  }

  .auth-card {
    min-height: 100vh;
    border-radius: 0;
  }

  .card-login {
    flex-flow: column-reverse;
  }
}
.card-login canvas {
  height: var(--auth-card-height);
}
@media screen and (max-width: 640px) {
  .card-login canvas {
    height: 300px;
  }
}

.uk-card-body {
  position: relative;
  height: 100%;
  width: 100%;
}

.login-form {
  padding: 0 24px;
  width: 100%;
  max-width: 390px;
  max-width: 100%;
}

.login-form .uk-margin {
  margin-top: 16px !important;
}

.login-form .uk-margin:first-child {
  margin-top: 0 !important;
}

.login-form .auth-meta-row.uk-margin {
  margin-top: 10px !important;
}
@media screen and (max-width: 640px) {
  .login-form {
    width: 100%;
    padding: 0 22px 36px;
  }
}

@media screen and (max-width: 640px) {
  .uk-position-center {
    position: relative !important;
    transform: initial;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.uk-inline {
  width: 100%;
}

.uk-input,
.uk-select,
.uk-textarea {
  border-radius: 12px;
  border-color: #d6e0e7;
  background: #f9fbfc;
  color: #214256;
  height: 50px;
  padding-left: 44px !important;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  border-color: #18435a;
  background: #ffffff;
}

.uk-form-icon {
  color: #6d8594;
}

.uk-button-primary, .uk-button-primary:focus, .uk-button-primary:hover {
  background-color: #18435a;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 50px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(24, 67, 90, 0.18);
}

.has-error {
  text-align: left;
}

.help-block.form-error {
  color: #b94a48;
}

.is-invalid {
  border-color: #b94a48 !important;
}

.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
  background-color: #18435a;
}

.uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus, .uk-radio:checked:focus {
  background-color: #18435a;
}

@media (min-width: 1200px) {
  .uk-card-body {
    padding: 34px 0 !important;
  }
}

@media screen and (max-width: 959px) {
  .auth-hero__content {
    right: 28px;
    left: 28px;
    bottom: 30px;
  }

  .auth-hero__title {
    font-size: 1.85rem;
  }
}

@media screen and (max-width: 640px) {
  .auth-panel__body {
    padding: 28px 0 0 !important;
  }

  .auth-panel .uk-position-center {
    max-width: none;
  }

  .auth-branding {
    padding-bottom: 18px;
  }

  .auth-title {
    font-size: 1.75rem;
  }

  .auth-hero__content {
    right: 22px;
    left: 22px;
    bottom: 24px;
  }

  .auth-hero__title {
    font-size: 1.6rem;
  }

  .auth-hero__text {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
