

/* Start:/local/templates/cabinet/styles.css?178902903327971*/
@charset "UTF-8";
@font-face {
  font-family: "Aeroport";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/local/assets/fonts/Aeroport-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Aeroport";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/local/assets/fonts/Aeroport.woff2") format("woff2");
}
@font-face {
  font-family: "Aeroport";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/local/assets/fonts/Aeroport-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Aeroport";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/local/assets/fonts/Aeroport-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/local/assets/fonts/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/local/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/local/assets/fonts/montserrat-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/local/assets/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --cabinet-primary: #e67a00;
  --cabinet-primary-dark: #6b3012;
  --cabinet-primary-light: #fdf3e3;
  --cabinet-bg: #f6f2ec;
  --cabinet-surface: #ffffff;
  --cabinet-text: #2b1b14;
  --cabinet-muted: #7a6a60;
  --cabinet-border: #e8e1dc;
  --cabinet-shadow: 0 12px 30px rgba(43, 27, 20, 0.06);
  --cabinet-radius: 18px;
  --cabinet-gap: 0.5rem;
  --cabinet-gap-label: 0.1875rem;
  --cabinet-sidebar-width: 17.125rem;
  --cabinet-font-heading: 'Aeroport', 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  --cabinet-font-text: 'Aeroport', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --cabinet-header-offset: 5.75rem;
  --auth-lime: #F5AA29;
  --auth-lime-soft: #F8C877;
  --auth-green: #E67A00;
  --auth-ink: #2B1B14;
  --auth-paper: #FDF3E3;
  --auth-paper-strong: #F7E8CD;
  --auth-text: #33221A;
  --auth-text-soft: #7A6A60;
  --auth-line: rgba(43, 27, 20, .10);
  --auth-shadow: 0 24px 70px rgba(43, 27, 20, .14);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Резиновый корень (подход «заполнять большие экраны»). До 1920px ЭФФЕКТИВНОЙ
   ширины — базовый размер (1080p/1440p не меняются; зум и шрифт-настройка юзера
   сохраняются через 1rem), выше плавно растёт до 1.5× на 2K/4K, масштабируя
   ВЕСЬ rem-дизайн пропорционально. NB: ширина считается в CSS-px, т.е. ПОСЛЕ
   масштаба ОС (4K при 200% = 1920 CSS-px → роста не будет, это норма).
   Якорь 1920 / наклон 0.00625 / потолок 1.5rem — крутятся здесь. */
html {
  font-size: clamp(1rem, 1rem + (100vw - 1920px) * 0.00625, 1.5rem);
}

html,
body {
  overflow-x: clip;
}

body {
  min-width: 320px;
}

.cabinet-site {
  background: radial-gradient(circle at top right, rgba(245, 170, 41, 0.1), transparent 22%), linear-gradient(180deg, #ffffff 0%, #fdfaf4 100%);
  color: var(--cabinet-text);
  font-family: var(--cabinet-font-text);
}

.cabinet-main--auth {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabinet-main--app {
  padding-top: var(--cabinet-header-offset);
}

body:has(#bx-panel) .cabinet-main--app {
  padding-top: 46px;
}

body:has(#bx-panel.bx-panel-folded) .cabinet-main--app {
  padding-top: 53px;
}

.cabinet-site--app::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}

@media (max-width: 860px) {
  .cabinet-site--app::before {
    height: 8px;
  }
}
.cabinet-app__content {
  width: calc(100% - var(--cabinet-sidebar-width));
  margin-left: var(--cabinet-sidebar-width);
  padding: 0 14px;
}

.cabinet-site--auth {
  background: radial-gradient(circle at top right, rgba(245, 170, 41, 0.12), transparent 24%), radial-gradient(circle at left bottom, rgba(230, 122, 0, 0.08), transparent 28%), linear-gradient(180deg, #ffffff 0%, #fdfaf4 100%);
  height: 100vh;
  overflow: hidden;
}

.cabinet-auth {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.cabinet-auth__frame {
  width: 100%;
  display: grid;
  max-width: 1200px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--auth-shadow);
}

.cabinet-auth__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #4A2C18 0%, #6B3012 100%);
  color: #ffffff;
}

.cabinet-auth__intro::before,
.cabinet-auth__intro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cabinet-auth__intro::before {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -120px;
  background: radial-gradient(circle, rgba(245, 170, 41, 0.24) 0%, rgba(245, 170, 41, 0.06) 42%, transparent 70%);
}

.cabinet-auth__intro::after {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 42%, transparent 72%);
}

.cabinet-auth__intro-top,
.cabinet-auth__features {
  position: relative;
  z-index: 1;
}

.cabinet-auth__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cabinet-auth__brand {
  display: flex;
  flex: 0 0 auto;
}

.cabinet-auth__brand .rp-logo,
.cabinet-auth__brand .nrp-logo {
  display: inline-flex;
}

.cabinet-auth__intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}
.cabinet-auth__intro-tag i {
  color: var(--auth-lime);
}

.cabinet-auth__intro-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: var(--cabinet-font-heading);
}

.cabinet-auth__intro-text {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cabinet-auth__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cabinet-auth__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.cabinet-auth__feature-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 170, 41, 0.16);
  color: var(--auth-lime);
  font-size: 13px;
  font-weight: 700;
}

.cabinet-auth__hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cabinet-auth__hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--cabinet-gap);
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.cabinet-auth__hero-pill i {
  color: var(--auth-lime);
}

.cabinet-auth__features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cabinet-auth__feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.cabinet-auth__feature-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #fff;
}
.cabinet-auth__feature-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
  margin: 0;
}

.cabinet-auth__feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(245, 170, 41, 0.16);
  color: var(--auth-lime);
  font-size: 14px;
}

.cabinet-auth__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--cabinet-gap);
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  overflow-y: auto;
  min-height: 0;
  max-height: calc(100vh - 64px);
}

.cabinet-auth__panel-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cabinet-auth__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--cabinet-gap);
  flex-wrap: wrap;
}

.cabinet-auth__card-title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #6B3012;
  font-family: var(--cabinet-font-heading);
}

.cabinet-auth__card-desc {
  margin: 0 0 20px;
  color: var(--auth-text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.cabinet-auth__tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cabinet-auth__company-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--auth-paper);
  border: 1px solid var(--auth-line);
  font-weight: 700;
  font-size: 13px;
  color: #6B3012;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease;
}
.cabinet-auth__company-link i {
  font-size: 11px;
}
.cabinet-auth__company-link:hover {
  background: var(--auth-paper-strong);
}

.cabinet-auth__note-box {
  background: linear-gradient(180deg, rgba(253, 243, 227, 0.84) 0%, rgba(255, 255, 255, 0.92) 100%);
  border: 1px solid var(--auth-line);
  border-radius: 22px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cabinet-auth__note-box strong {
  display: block;
  color: #6B3012;
  margin-bottom: 6px;
  font-size: 14px;
}
.cabinet-auth__note-box p {
  margin: 0;
  color: var(--auth-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cabinet-auth__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: rgba(245, 170, 41, 0.16);
  color: var(--auth-green);
  font-size: 16px;
}

.cabinet-auth__tabs {
  display: inline-flex;
  align-self: flex-start;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--auth-paper);
  border: 1px solid var(--auth-line);
}

.cabinet-auth__tab {
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--auth-text-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.cabinet-auth__tab.is-active {
  background: #ffffff;
  color: #6B3012;
  box-shadow: 0 8px 20px rgba(43, 27, 20, 0.08);
}

.cabinet-auth__forms {
  min-height: 360px;
}

.cabinet-auth__form {
  display: none;
  animation: cabinet-auth-fade-in 0.35s ease;
}

.cabinet-auth__form.is-active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cabinet-auth__field {
  display: block;
}

.cabinet-auth__input,
.cabinet-auth__select {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(43, 27, 20, 0.12);
  background: #ffffff;
  color: var(--auth-text);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cabinet-auth__input::-moz-placeholder {
  color: #9c8d80;
}

.cabinet-auth__input::placeholder {
  color: #9c8d80;
}

.cabinet-auth__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cabinet-auth__captcha-picture {
  position: relative;
  flex: 0 0 auto;
  display: block;
  height: 40px;
  line-height: 0;
}

.cabinet-auth__captcha-image {
  display: block;
  height: 40px;
  width: auto;
  border-radius: 14px;
}

.cabinet-auth__captcha-reload {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--auth-text);
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.cabinet-auth__captcha-reload:hover:not(:disabled) {
  background: #ffffff;
  color: var(--cabinet-primary);
}

.cabinet-auth__captcha-reload:disabled {
  opacity: 0.5;
  cursor: default;
}

.cabinet-auth__captcha-word {
  flex: 1 1 auto;
  min-width: 0;
}

.cabinet-auth__select:has(option[value=""]:checked) {
  color: #9c8d80;
}

.cabinet-auth__select option {
  color: var(--auth-text);
}

.cabinet-auth__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232B1B14' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.cabinet-auth__input:focus,
.cabinet-auth__select:focus {
  border-color: rgba(230, 122, 0, 0.55);
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 170, 41, 0.18);
}

.cabinet-auth__pwd {
  position: relative;
}

.cabinet-auth__input--pwd {
  padding-right: 46px;
}

.cabinet-auth__pwd-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #7A6A60;
  font: inherit;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.cabinet-auth__pwd-toggle:hover {
  background: rgba(107, 48, 18, 0.06);
  color: #6B3012;
}

.cabinet-auth__pwd-toggle:focus-visible {
  outline: 2px solid #F5AA29;
  outline-offset: 2px;
}

.cabinet-auth__pwd-icon {
  display: block;
}

.cabinet-auth__pwd-icon[hidden] {
  display: none;
}

.cabinet-auth__submit {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #6B3012;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(107, 48, 18, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.cabinet-auth__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(107, 48, 18, 0.22);
}

.cabinet-auth__submit--register {
  background: #6B3012;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(107, 48, 18, 0.16);
}

.cabinet-auth__link,
.cabinet-auth__back,
.cabinet-auth__checkbox-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #6B3012;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.cabinet-auth__link {
  font-size: 14px;
}

.cabinet-auth__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--auth-text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.cabinet-auth__checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #6B3012;
}

.cabinet-auth__back {
  font-size: 14px;
  font-weight: 600;
}

.cabinet-auth__alert {
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.cabinet-auth__alert--error {
  background: #fde7e7;
  color: #b42318;
}

.cabinet-auth__alert--success {
  background: #FDF3E3;
  color: #A0540A;
}

.cabinet-auth__error,
.cabinet-auth__checkbox-note {
  display: block;
  margin-top: 6px;
  color: #b42318;
  font-size: 13px;
  line-height: 1.4;
}

.cabinet-auth__field--error .cabinet-auth__input,
.cabinet-auth__field--error .cabinet-auth__select {
  border-color: #efb3b3;
}

.cabinet-auth__checkbox--error {
  color: #b42318;
}

.cabinet-auth__checkbox--error .cabinet-auth__checkbox-input {
  outline: 2px solid #e25555;
  outline-offset: 2px;
  border-radius: 4px;
}

.cabinet-auth__aux-title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #6B3012;
  font-family: var(--cabinet-font-heading);
}

.cabinet-auth__aux-text {
  margin: 0;
  color: var(--auth-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.cabinet-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(43, 27, 20, 0.5);
  backdrop-filter: blur(4px);
  font-family: var(--cabinet-font-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cabinet-auth-modal[hidden] {
  display: none;
}

.cabinet-auth-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 80vh;
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--auth-shadow);
  border: 1px solid var(--auth-line);
}

.cabinet-auth-modal__close {
  font-family: inherit;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--auth-paper);
  color: var(--auth-ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding-bottom: 3px; /* Aeroport: «×» ниже центра */
}

.cabinet-auth-modal__title {
  margin: 0 0 16px;
  color: #6B3012;
  font-family: var(--cabinet-font-heading);
  font-size: 1.4rem;
  line-height: 1.2;
}

.cabinet-auth-modal__text {
  margin: 0;
  color: var(--auth-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.cabinet-auth-modal__body h3 {
  margin: 24px 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #6B3012;
  font-family: var(--cabinet-font-heading);
}
.cabinet-auth-modal__body h3:first-child {
  margin-top: 0;
}
.cabinet-auth-modal__body p {
  margin: 0;
  color: var(--auth-text-soft);
  font-size: 14px;
  line-height: 1.7;
}

@keyframes cabinet-auth-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1023px) {
  .cabinet-app__content {
    width: auto;
    min-height: auto;
    margin-left: 0;
    padding: 0 8px 62px;
  }
  .cabinet-auth {
    padding: 18px;
    margin: 5px;
  }
  .cabinet-auth__frame {
    grid-template-columns: 1fr;
  }
  .cabinet-auth__intro,
  .cabinet-auth__panel {
    padding: 32px 24px;
  }
  .cabinet-auth__intro-text,
  .cabinet-auth__features-grid {
    display: none;
  }
}
@media (max-width: 767px) {
  .cabinet-auth__intro {
    padding: 14px;
  }
  .cabinet-auth__intro-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
  }
  .cabinet-site--auth {
    height: auto;
    overflow: visible;
  }
  .cabinet-auth {
    height: auto;
    min-height: auto;
    padding: 0;
    align-items: flex-start;
  }
  .cabinet-auth__frame {
    min-height: auto;
  }
  .cabinet-auth__panel {
    padding: 10px;
    max-height: none;
    height: auto;
    overflow-y: visible;
  }
  .cabinet-auth__brand-row {
    margin-bottom: 0;
  }
  .cabinet-auth__intro-title {
    font-size: 24px;
    text-align: center;
    margin: 0;
  }
  .cabinet-auth__tabs {
    width: 100%;
    justify-content: space-between;
  }
  .cabinet-auth__tab {
    flex: 1 1 0;
    text-align: center;
  }
  .cabinet-auth-modal__dialog {
    padding: 24px 18px 18px;
  }
  .cabinet-auth__hero-pills,
  .cabinet-auth__hero-pill,
  .cabinet-auth__intro-tag {
    display: none !important;
  }
  .cabinet-auth__note-icon {
    display: none;
  }
}
.cabinet-2fa-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--cabinet-gap);
  padding: 12px 18px;
  border: 1px solid var(--cabinet-border);
  border-radius: var(--cabinet-radius);
  background: linear-gradient(180deg, #FDFAF4 0%, #FBF3E2 100%);
  box-shadow: var(--cabinet-shadow);
  color: var(--cabinet-text);
}

.cabinet-2fa-notice__gauge {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
}

.cabinet-2fa-notice__ring {
  width: 56px;
  height: 56px;
  display: block;
}

.cabinet-2fa-notice__ring-track {
  fill: none;
  stroke: rgba(43, 27, 20, 0.1);
  stroke-width: 5;
}

.cabinet-2fa-notice__ring-value {
  fill: none;
  stroke: var(--cabinet-primary);
  stroke-width: 5;
  stroke-linecap: round;
}

.cabinet-2fa-notice__count {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cabinet-2fa-notice__days {
  font-family: var(--cabinet-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--cabinet-primary-dark);
}

.cabinet-2fa-notice__today {
  font-family: var(--cabinet-font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--cabinet-primary-dark);
}

.cabinet-2fa-notice__unit {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--cabinet-muted);
}

.cabinet-2fa-notice__body {
  flex: 1 1 auto;
  min-width: 0;
}

.cabinet-2fa-notice__title {
  display: block;
  font-family: var(--cabinet-font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cabinet-primary-dark);
}

.cabinet-2fa-notice__text {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--cabinet-muted);
}

.cabinet-2fa-notice__action {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--cabinet-primary);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.cabinet-2fa-notice__action:hover {
  background: var(--cabinet-primary-dark);
}
.cabinet-2fa-notice__action:focus-visible {
  outline: 2px solid rgba(245, 170, 41, 0.55);
  outline-offset: 2px;
}

.cabinet-2fa-notice__close {
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 28px;
  height: 28px;
  margin: -2px -8px 0 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  color: var(--cabinet-muted);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.cabinet-2fa-notice__close:hover {
  border-color: var(--cabinet-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--cabinet-primary-dark);
}
.cabinet-2fa-notice__close:focus-visible {
  outline: 2px solid var(--cabinet-primary);
  outline-offset: 2px;
}

.cabinet-2fa-notice--urgent {
  border-color: rgba(160, 46, 46, 0.32);
  background: linear-gradient(180deg, #FEF7F5 0%, #FBE9E4 100%);
}
.cabinet-2fa-notice--urgent .cabinet-2fa-notice__ring-value {
  stroke: #C4452F;
}
.cabinet-2fa-notice--urgent .cabinet-2fa-notice__days,
.cabinet-2fa-notice--urgent .cabinet-2fa-notice__today,
.cabinet-2fa-notice--urgent .cabinet-2fa-notice__title {
  color: #8E2A1C;
}
.cabinet-2fa-notice--urgent .cabinet-2fa-notice__action {
  background: #C4452F;
}
.cabinet-2fa-notice--urgent .cabinet-2fa-notice__action:hover {
  background: #8E2A1C;
}

@media (max-width: 720px) {
  .cabinet-2fa-notice {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }
  .cabinet-2fa-notice__body {
    flex: 1 1 60%;
  }
  .cabinet-2fa-notice__action {
    flex: 1 1 100%;
    order: 1;
  }
}
.cabinet-empty-state {
  max-width: 560px;
  margin: 40px auto;
  padding: 60px 24px;
  text-align: center;
  background: var(--cabinet-surface);
  border: 1px solid var(--cabinet-border);
  border-radius: var(--cabinet-radius);
  box-shadow: var(--cabinet-shadow);
}

.cabinet-empty-state__mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 14px;
  background: #FBEEC4;
  color: #8E6614;
  display: grid;
  place-items: center;
}

.cabinet-empty-state__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #6B3012;
  font-family: var(--cabinet-font-heading);
}

.cabinet-empty-state__text {
  margin: 0;
  color: var(--cabinet-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cabinet-empty-state__action {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #2B1B14;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease;
}

.cabinet-empty-state__action:hover {
  background: #573B28;
}

.cabinet-auth .scheme-picker {
  position: relative;
}
.cabinet-auth .scheme-picker > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-right: 14px;
  cursor: pointer;
  list-style: none;
  background-image: none;
}
.cabinet-auth .scheme-picker > summary::-webkit-details-marker {
  display: none;
}
.cabinet-auth .scheme-picker__current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cabinet-auth .scheme-picker__current.is-placeholder {
  color: #9c8d80;
}
.cabinet-auth .scheme-picker__chev {
  flex: 0 0 auto;
  color: #7A6A60;
  font-size: 15px;
  transition: transform 0.18s ease;
}
.cabinet-auth .scheme-picker[open] .scheme-picker__chev {
  transform: rotate(180deg);
}
.cabinet-auth .scheme-picker__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 4px;
  background: #ffffff;
  border: 1px solid rgba(43, 27, 20, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(43, 27, 20, 0.12);
}
.cabinet-auth .scheme-picker__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 15px;
}
.cabinet-auth .scheme-picker__opt.is-active {
  background: #FAEEDD;
  font-weight: 600;
}
.cabinet-auth .scheme-picker__opt[data-value] {
  cursor: pointer;
}
.cabinet-auth .scheme-picker__opt[data-value]:hover,
.cabinet-auth .scheme-picker__opt[data-value]:focus-visible {
  background: #FAEEDD;
  outline: none;
}
.cabinet-auth .scheme-picker__opt.is-disabled {
  cursor: not-allowed;
}
.cabinet-auth .scheme-picker__label {
  color: #6B3012;
}
.cabinet-auth .scheme-picker__opt.is-disabled .scheme-picker__label {
  color: #A99A8D;
}
.cabinet-auth .scheme-picker__opt.is-disabled .scheme-picker__na {
  color: #A99A8D;
}
.cabinet-auth .scheme-picker__na {
  flex: 0 0 auto;
  font-weight: 600;
}

/* End */


/* Start:/local/components/cabinet/logo/templates/.default/style.css?1789031342230*/
.nrp-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.nrp-logo__image {
  display: block;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* End */
/* /local/templates/cabinet/styles.css?178902903327971 */
/* /local/components/cabinet/logo/templates/.default/style.css?1789031342230 */
