.qor-auth-page {
  min-height: 760px;
  padding: 54px 18px;
  background: #0b0b0d;
}

body:has(.qor-auth-page),
body:has(.qor-auth-page) #main-wrapper {
  background: #0b0b0d;
}

.qor-auth-page *,
.qor-auth-page *::before,
.qor-auth-page *::after {
  box-sizing: border-box;
}

.qor-card-access {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.qor-card-access__brand,
.qor-card-access__panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.qor-card-access__brand {
  min-height: 590px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  background:
    linear-gradient(rgba(7, 23, 57, 0.72), rgba(11, 11, 13, 0.92)),
    url("../img/login_touch.jpg") center/cover;
  overflow: hidden;
}

.qor-card-access__brand img {
  width: min(270px, 76%);
  height: auto;
}

.qor-auth-eyebrow {
  margin: 0 0 14px;
  color: #E41923;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qor-card-access__brand h1 {
  max-width: 610px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.4vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.qor-card-access__brand p:not(.qor-auth-eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.qor-card-access__panel {
  padding: 38px;
  align-self: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.96), rgba(7, 23, 57, 0.96)),
    #151515;
  border-color: rgba(203, 2, 12, 0.34);
}

.qor-form-heading {
  margin-bottom: 26px;
}

.qor-form-heading h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.05;
}

.qor-form-heading p:not(.qor-auth-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.qor-card-login-form {
  display: grid;
  gap: 18px;
}

.qor-card-login-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
}

.qor-card-login-form input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.qor-card-login-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.qor-card-login-form input:focus {
  border-color: #CB020C;
  box-shadow: 0 0 0 4px rgba(203, 2, 12, 0.16);
}

.qor-program-password {
  animation: qorFadeIn 180ms ease;
}

.qor-program-password[hidden] {
  display: none;
}

.qor-password-field {
  position: relative;
  display: block;
}

.qor-password-field input {
  padding-right: 76px;
}

.qor-password-toggle {
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.qor-password-toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 36px;
  padding: 0 12px;
}

.qor-password-toggle:hover {
  color: #ffffff;
  background: #CB020C;
}

.qor-primary-button {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #CB020C;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(203, 2, 12, 0.24);
  transition: background 160ms ease, transform 160ms ease;
}

.qor-primary-button:hover {
  background: #E41923;
  transform: translateY(-1px);
}

.qor-primary-button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.qor-auth-message {
  min-height: 20px;
  margin: 0;
  color: #E41923;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.qor-auth-message.is-error {
  color: #CB020C;
}

@keyframes qorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .qor-auth-page {
    padding: 30px 12px;
  }

  .qor-card-access {
    grid-template-columns: 1fr;
  }

  .qor-card-access__brand {
    min-height: 380px;
    padding: 30px;
  }

  .qor-card-access__brand img {
    width: min(230px, 72%);
  }
}

@media (max-width: 520px) {
  .qor-card-access__brand,
  .qor-card-access__panel {
    padding: 22px;
  }
}
