:root {
  --yellow: #ffbf00;
  --yellow-soft: #fff6d5;
  --green: #079f3c;
  --green-dark: #087e34;
  --red: #e52328;
  --ink: #101821;
  --muted: #6c6f73;
  --line: #dcdede;
  --white: #ffffff;
  --shadow: 0 25px 70px rgba(25, 25, 20, 0.16);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: #f5f5f4;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-page {
  min-height: 100vh;
  padding: 25px 22px 30px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(
      circle at 50% 0,
      #ffffff 0,
      #f5f5f4 55%,
      #ececea 100%
    );
}

.login-card {
  width: min(1210px, 100%);
  min-height: 850px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  border: 1px solid #dddddb;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.brand-section {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 62px 58px 48px;
  background:
    url("/assets/images/hotel-reception.jpg")
    center bottom / cover no-repeat;
}

.brand-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.96) 24%,
      rgba(255, 255, 255, 0.65) 45%,
      rgba(255, 255, 255, 0.04) 68%
    );
}

.brand-header,
.welcome-copy,
.benefits-panel {
  position: relative;
  z-index: 1;
}

.brand-header {
  text-align: center;
}

.brand-logo {
  width: 160px;
  height: 105px;
  margin-inline: auto;
}

.brand-logo svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

.logo-sun {
  fill: var(--yellow);
  stroke: var(--yellow);
}

.logo-green {
  stroke: var(--green-dark);
}

.logo-yellow {
  stroke: var(--yellow);
}

.brand-header h1 {
  margin: 6px 0 0;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -1px;
}

.brand-header h1 span {
  color: var(--yellow);
}

.brand-header h1 strong {
  color: var(--green-dark);
}

.brand-header p {
  margin: 11px 0 0;
  color: #444746;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 1px;
}

.welcome-copy {
  margin-top: 82px;
}

.welcome-copy h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -1.2px;
}

.title-line {
  display: block;
  width: 47px;
  height: 4px;
  margin: 27px 0 31px;
  border-radius: 10px;
  background: var(--yellow);
}

.welcome-copy p {
  max-width: 300px;
  margin: 0;
  color: #3f4547;
  font-size: 18px;
  line-height: 1.55;
}

.benefits-panel {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 50px;
  min-height: 175px;
  padding: 28px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 18px;
  color: white;
  background:
    linear-gradient(
      135deg,
      rgba(7, 164, 59, 0.96),
      rgba(4, 145, 50, 0.96)
    );
  box-shadow: 0 15px 35px rgba(5, 105, 40, 0.28);
  backdrop-filter: blur(10px);
}

.benefit-item {
  min-width: 0;
  padding: 0 17px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.44);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  margin-bottom: 13px;
}

.benefit-icon svg {
  width: 39px;
  height: 39px;
  stroke-width: 1.8;
}

.benefit-item strong {
  margin-bottom: 9px;
  font-size: 18px;
}

.benefit-item small {
  max-width: 110px;
  font-size: 13px;
  line-height: 1.45;
}

.form-section {
  position: relative;
  min-width: 0;
  padding: 115px 60px 64px;
  background: white;
}

.language-control {
  position: absolute;
  top: 35px;
  right: 38px;
}

.language-control label {
  min-width: 170px;
  height: 50px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 25px 1fr 20px;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--yellow);
  border-radius: 11px;
  background: white;
}

.language-control svg {
  width: 23px;
  height: 23px;
}

.language-control select {
  width: 100%;
  border: 0;
  outline: 0;
  appearance: none;
  color: var(--ink);
  background: transparent;
  font-weight: 650;
}

.select-chevron {
  pointer-events: none;
}

.form-content {
  width: min(540px, 100%);
  margin-inline: auto;
}

.form-heading h2 {
  margin: 0;
  font-size: 35px;
  letter-spacing: -1px;
}

.heading-line {
  display: block;
  width: 49px;
  height: 4px;
  margin: 29px 0 34px;
  background: var(--yellow);
}

.form-heading p {
  margin: 0 0 35px;
  color: var(--muted);
  font-size: 16px;
}

.login-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 43px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
}

.method-button {
  min-height: 88px;
  padding: 12px 8px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid #e6e7e7;
  color: #393d3f;
  background: white;
}

.method-button:last-child {
  border-right: 0;
}

.method-button:hover {
  background: #fafafa;
}

.method-button.active {
  color: #24220f;
  background:
    linear-gradient(
      135deg,
      #fff9df,
      var(--yellow-soft)
    );
  box-shadow: inset 0 0 0 1.5px var(--yellow);
}

.method-button svg {
  width: 27px;
  height: 27px;
}

.method-button span {
  font-size: 14px;
}

#loginForm {
  display: grid;
  gap: 26px;
}

.form-field {
  display: grid;
  gap: 12px;
}

.form-field label {
  font-size: 16px;
  font-weight: 750;
}

.input-wrapper {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d5d8d8;
  border-radius: 10px;
  background: white;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.input-wrapper:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 159, 60, 0.1);
}

.input-icon {
  width: 61px;
  height: 61px;
  flex: 0 0 61px;
  display: grid;
  place-items: center;
  color: #64696a;
}

.input-icon svg {
  width: 25px;
  height: 25px;
}

.input-wrapper input {
  width: 100%;
  min-width: 0;
  height: 60px;
  padding: 0 18px 0 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
}

.input-wrapper input::placeholder {
  color: #8b8e8f;
}

.password-toggle {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #747879;
  background: transparent;
}

.password-toggle:hover {
  color: var(--green);
}

.password-toggle svg {
  width: 23px;
  height: 23px;
}

.eye-open {
  display: none;
}

.password-toggle.visible .eye-open {
  display: block;
}

.password-toggle.visible .eye-closed {
  display: none;
}

.form-options {
  margin-top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.remember-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.remember-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid #b6babb;
  border-radius: 5px;
  color: white;
  background: white;
}

.custom-checkbox svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  stroke-width: 2.5;
}

.remember-option input:checked + .custom-checkbox {
  border-color: var(--green);
  background: var(--green);
}

.remember-option input:checked + .custom-checkbox svg {
  opacity: 1;
}

.forgot-link {
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

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

.login-status {
  min-height: 17px;
  margin: -10px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.login-status.error {
  color: var(--red);
}

.login-status.success {
  color: var(--green);
}

.signin-button {
  min-height: 61px;
  padding: 11px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 9px;
  color: white;
  background:
    linear-gradient(
      90deg,
      #08a63e,
      #06a33c
    );
  box-shadow: 0 10px 25px rgba(7, 159, 60, 0.17);
  font-size: 17px;
  font-weight: 750;
}

.signin-button:hover {
  background:
    linear-gradient(
      90deg,
      #078f36,
      #079f3c
    );
}

.signin-button svg {
  width: 27px;
  height: 27px;
}

.separator {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 8px;
}

.separator span {
  height: 1px;
  background: #dfe1e1;
}

.separator strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe1e1;
  border-radius: 50%;
  color: #55595b;
  background: white;
  font-size: 13px;
}

.google-button {
  min-height: 58px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border: 1px solid #d6d8d8;
  border-radius: 9px;
  color: #25292a;
  background: white;
  font-weight: 650;
}

.google-button:hover {
  background: #fafafa;
}

.google-button svg {
  width: 27px;
  height: 27px;
  stroke: none;
}

.google-blue {
  fill: #4285f4;
}

.google-green {
  fill: #34a853;
}

.google-yellow {
  fill: #fbbc05;
}

.google-red {
  fill: #ea4335;
}

.security-notice {
  margin-top: 42px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  border: 1px solid #f3cf69;
  border-radius: 12px;
  background:
    linear-gradient(
      110deg,
      #fffdf5,
      #fff8e5
    );
}

.notice-icon {
  color: var(--yellow);
}

.notice-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.security-notice strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.security-notice p {
  margin: 0;
  color: #666b6d;
  font-size: 14px;
  line-height: 1.55;
}

.register-prompt {
  margin: 35px 0 0;
  text-align: center;
  color: #6f7374;
  font-size: 16px;
}

.register-prompt a {
  margin-left: 6px;
  color: var(--red);
  text-decoration: none;
  font-weight: 650;
}

.register-prompt a:hover {
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .login-card {
    grid-template-columns: 42% 58%;
  }

  .brand-section {
    padding-inline: 35px;
  }

  .welcome-copy h2 {
    font-size: 33px;
  }

  .benefits-panel {
    left: 22px;
    right: 22px;
    padding-inline: 10px;
  }

  .benefit-item {
    padding-inline: 8px;
  }

  .form-section {
    padding-inline: 38px;
  }
}

@media (max-width: 820px) {
  .login-page {
    padding: 13px;
  }

  .login-card {
    display: block;
    min-height: auto;
    border-radius: 18px;
  }

  .brand-section {
    min-height: 600px;
    padding: 35px 24px;
  }

  .welcome-copy {
    margin-top: 52px;
  }

  .benefits-panel {
    bottom: 27px;
  }

  .form-section {
    padding: 115px 22px 45px;
  }

  .language-control {
    top: 30px;
    right: 22px;
  }
}

@media (max-width: 560px) {
  .brand-section {
    min-height: 690px;
  }

  .brand-header h1 {
    font-size: 25px;
  }

  .welcome-copy h2 {
    font-size: 31px;
  }

  .benefits-panel {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 20px;
  }

  .benefit-item {
    grid-template-columns: 38px 1fr;
    justify-items: start;
    text-align: left;
    gap: 10px;
    padding: 0;
    border-right: 0;
  }

  .benefit-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .benefit-icon svg {
    width: 32px;
    height: 32px;
  }

  .benefit-item strong {
    margin: 0;
  }

  .benefit-item small {
    max-width: none;
  }

  .form-heading h2 {
    font-size: 30px;
  }

  .login-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-button {
    border-bottom: 1px solid #e6e7e7;
  }

  .method-button:nth-child(2) {
    border-right: 0;
  }

  .method-button:nth-child(3),
  .method-button:nth-child(4) {
    border-bottom: 0;
  }

  .form-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-notice {
    padding: 18px;
  }
}

/* BNX_SECURE_AUTH_LOGIN_V1 */
[hidden] {
  display: none !important;
}

.email-link-button {
  min-height: 54px;
  padding: 10px 20px;
  border: 1px solid #079c3a;
  border-radius: 9px;
  color: #087f34;
  background: white;
  font-weight: 750;
}

.email-link-button:hover {
  background: #f0fff5;
}

/* BNX_SINGLE_IDENTIFIER_LOGIN_V3 */

.login-methods,
.method-button,
#loginMethod {
  display: none !important;
}

#loginForm {
  width: 100%;
}

#identifier {
  width: 100%;
}

/* BNX_LOGIN_BUTTON_LAYOUT_FIX_V1 */

#signInButton,
.sign-in-button {
  width: 100%;
  min-height: 52px;
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

#signInButton svg,
.sign-in-button svg {
  display: block;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#signInButton span,
.sign-in-button span {
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 1;
}

#signInButton:disabled,
.sign-in-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Keep all login-field icons controlled */

#loginForm .input-icon {
  width: 50px;
  min-width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loginForm .input-icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#passwordToggle {
  width: 48px;
  min-width: 48px;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#passwordToggle svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Restore visible remember-me checkbox */

#rememberMe {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #0aa83f;
}

.remember-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

@media (max-width: 760px) {
  #signInButton,
  .sign-in-button {
    min-height: 50px;
    height: 50px;
  }
}

/* BNX_LOGIN_CONTROLS_RESTORE_V1 */

/* Remember-me control */

.remember-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #27313b;
  user-select: none;
}

#rememberMe {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  min-width: 19px;
  margin: 0;
  border: 1.5px solid #aeb6bf;
  border-radius: 5px;
  background: #ffffff;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

#rememberMe::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}

#rememberMe:hover {
  border-color: #079b42;
}

#rememberMe:checked {
  background: #079b42;
  border-color: #079b42;
}

#rememberMe:checked::before {
  transform: rotate(-45deg) scale(1);
}

#rememberMe:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(7, 155, 66, 0.14);
}

/* Forgot-password control */

.forgot-password-link {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #e3e7eb;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #087b38;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.forgot-password-link:hover {
  color: #05652e;
  border-color: #0aa84f;
  background: #f2fff7;
}

.forgot-password-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 168, 79, 0.14);
}

/* Google sign-in button */

#googleButton,
.google-button {
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #d8dde3;
  border-radius: 10px;
  background: #ffffff;
  color: #202124;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

#googleButton:hover,
.google-button:hover {
  border-color: #aeb6bf;
  background: #fafafa;
  box-shadow: 0 5px 14px rgba(18, 30, 43, 0.08);
}

#googleButton:active,
.google-button:active {
  transform: translateY(1px);
}

#googleButton:focus-visible,
.google-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.14);
}

#googleButton:disabled,
.google-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

#googleButton .google-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#googleButton .google-icon svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  display: block;
}

/*
 * Prevent the general button SVG rule from removing
 * the Google logo's individual fill colours.
 */

#googleButton .google-icon svg,
#googleButton .google-icon svg path {
  stroke: none !important;
}

/* Form options alignment */

.form-options {
  width: 100%;
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 520px) {
  .form-options {
    align-items: flex-start;
    gap: 12px;
  }

  .forgot-password-link {
    padding: 7px 9px;
    font-size: 13px;
  }

  #googleButton,
  .google-button {
    min-height: 52px;
  }
}

/* BNX_LOGIN_COMPACT_GREEN_V1 */

/* Compact overall form spacing */

#loginForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#loginForm .form-field {
  margin: 0 !important;
}

#loginForm label {
  margin-bottom: 7px;
}

#loginForm .input-wrapper {
  min-height: 50px;
}

.form-options {
  margin: 2px 0 4px !important;
  min-height: 34px;
}

#loginStatus {
  min-height: 0;
  margin: 0;
  padding: 0;
}

#loginStatus:not(:empty) {
  margin: 0 0 2px;
  padding: 6px 8px;
}

.separator {
  margin: 4px 0 !important;
}

#googleButton,
.google-button {
  margin: 0;
}

.login-card,
.login-content,
.login-form-panel {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

/* Green Sign In button */

#signInButton,
.sign-in-button {
  width: 100%;
  min-height: 50px;
  height: 50px;
  margin: 0;
  border: 1px solid #0b9f45;
  border-radius: 10px;
  background: #0aa84f !important;
  color: #ffffff !important;
  box-shadow: 0 6px 14px rgba(10, 168, 79, 0.18);
}

#signInButton:hover,
.sign-in-button:hover {
  background: #078f42 !important;
  border-color: #078f42;
  box-shadow: 0 8px 18px rgba(10, 168, 79, 0.24);
}

#signInButton:active,
.sign-in-button:active {
  background: #067d39 !important;
  transform: translateY(1px);
}

#signInButton:focus-visible,
.sign-in-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(10, 168, 79, 0.16),
    0 6px 14px rgba(10, 168, 79, 0.18);
}

#signInButton svg,
.sign-in-button svg {
  stroke: currentColor !important;
}

/* Real working Remember me checkbox */

.remember-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

#rememberMe {
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  width: 17px !important;
  height: 17px !important;
  min-width: 17px;
  margin: 0;
  padding: 0;
  accent-color: #0aa84f;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
}

.remember-option span {
  line-height: 1.2;
}

/* Compact forgot-password button */

.forgot-password-link {
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 7px;
  font-size: 13px;
}

/* Compact headings and introduction */

.login-form-panel h1,
.login-content h1 {
  margin-bottom: 10px !important;
}

.login-form-panel h1 + *,
.login-content h1 + * {
  margin-top: 0 !important;
}

.login-form-panel p,
.login-content p {
  margin-top: 0;
  margin-bottom: 18px;
}

/* Compact mobile layout */

@media (max-width: 760px) {
  #loginForm {
    gap: 12px;
  }

  .login-card,
  .login-content,
  .login-form-panel {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .form-options {
    gap: 10px;
  }

  #signInButton,
  .sign-in-button {
    min-height: 48px;
    height: 48px;
  }
}

/* BNX_ADMIN_STAFF_LOGIN_MODES_V1 */

.account-mode-selector {
  width: 100%;
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
  padding: 5px;
  border: 1px solid #dfe3e0;
  border-radius: 13px;
  background: #f4f6f4;
}

.account-mode-button {
  min-width: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #555c57;
  background: transparent;
  text-align: left;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    box-shadow 140ms ease,
    color 140ms ease;
}

.account-mode-button:hover {
  background: rgba(255, 255, 255, 0.7);
}

.account-mode-button.active {
  border-color: #0b9c3d;
  color: #087b32;
  background: #ffffff;
  box-shadow:
    0 5px 16px rgba(15, 88, 42, 0.1),
    inset 0 0 0 1px rgba(11, 156, 61, 0.08);
}

.account-mode-icon {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5e9e6;
}

.account-mode-button.active
.account-mode-icon {
  color: #ffffff;
  background: #099b3b;
}

.account-mode-icon svg {
  width: 21px;
  height: 21px;
}

.account-mode-button > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.account-mode-button strong {
  font-size: 15px;
  line-height: 1.1;
}

.account-mode-button small {
  overflow: hidden;
  color: #7b817d;
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .account-mode-button {
    min-height: 62px;
    padding: 8px;
  }

  .account-mode-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .account-mode-button small {
    display: none;
  }
}
