html {
  background: #000;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

body.login {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100vh;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  flex-direction: row;
}

.login__wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  width: 100%;
  height: 100vh;
}

.login__section-left {
  padding: 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  position: relative;
  animation: slideInLeft 0.35s ease-out;
}
.login__section-left .login__container {
  width: 100%;
  max-width: 380px;
}
.login__section-left .login__title {
  color: #212121;
}
.login__section-left .login__subtitle {
  color: #666666;
}
.login__section-left .login__label {
  color: #999999;
}
.login__section-left .login__remember label p {
  color: #666666;
}
.login__section-left .login__link {
  color: #f62d3e;
}
.login__section-left .login__link:hover {
  color: #fc172a;
}

.login__section-right {
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 40px;
  overflow-y: auto;
  animation: slideInRight 0.35s ease-out;
  position: relative;
}
.login__section-right .login__logo {
  display: none;
}

.login__background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  filter: grayscale(80%) brightness(0.6) contrast(1.1);
}

.login__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.login__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
}

.login__header {
  margin-bottom: 32px;
}

.login__logo {
  margin-bottom: 32px;
  position: relative;
  width: 200px;
}
.login__logo img {
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.login__section-left .login__logo {
  position: absolute;
  left: 20px;
  top: 20px;
  margin-bottom: 0;
  width: 160px;
}

.login__title {
  font-size: 33px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.login__subtitle {
  font-size: 14px;
  font-weight: 100;
  color: #9e9e9e;
  margin: 0;
  line-height: 1.4;
}

.login__info-content {
  color: #ffffff;
  text-align: left;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 0px;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.login__logo-right {
  width: 160px;
  margin: 0 0 -18px -4px;
}
.login__logo-right img {
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0;
}

.login__info-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login__info-tagline {
  font-size: 45px;
  font-weight: 800;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.login__info-highlight {
  color: #f62d3e;
  font-weight: 800;
}

.login__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 85%;
  margin: 0;
}

.login__product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.login__product-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  display: block;
}

.login__product-title {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.login__product-desc {
  font-size: 12px;
  font-weight: 300;
  margin: 0;
  color: #c5c5c5;
  line-height: 1.6;
}

.loginformform,
.login__reset {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.login__form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  gap: 6px;
}

.login__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.login__label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 100;
  color: #9e9e9e;
  margin: 0;
  letter-spacing: 1px;
}

.login__input {
  padding: 12px 14px;
  border: 1px solid #dde5f0;
  border-radius: 6px;
  font-size: 14px;
  color: #212121;
  background: #e8eef7;
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.login__input::-moz-placeholder {
  color: #808080;
}
.login__input::placeholder {
  color: #808080;
}
.login__input:focus {
  outline: none;
  background: #ffffff;
  border-color: #5d71ff;
  box-shadow: 0 0 0 2px rgba(119, 194, 203, 0.08);
}

.checkrememberme {
  display: none;
}
.checkrememberme:checked + label span {
  background-color: #f62d3e;
  border-color: #f62d3e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.login__form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.login__remember {
  display: flex;
  align-items: center;
}
.login__remember label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 8px;
}
.login__remember label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 1.5px solid #dde5f0;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.login__remember label span:hover {
  border-color: #9e9e9e;
  background-color: #f9f9f9;
}
.login__remember label p {
  margin: 0;
  font-size: 12px;
  color: #666666;
  font-weight: 300;
}

.button_login {
  background: #f62d3e;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s ease;
  letter-spacing: 0.4px;
}
.button_login:hover {
  background: #fc172a;
  transform: translateY(-1px);
}
.button_login:active {
  transform: translateY(0);
}

.login__submit {
  margin-bottom: 18px;
}

.login__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
}

.login__link {
  font-size: 12px;
  color: #f62d3e;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0;
  font-weight: 500;
}
.login__link:hover {
  color: #d41b2f;
  text-decoration: underline;
}
.login__link--secondary {
  color: #808080;
}
.login__link--secondary:hover {
  color: #404040;
}

.login__footer_row {
  position: fixed;
  bottom: 25px;
  left: 0;
  right: 0;
  color: #4e4e4e;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  padding: 0 25px;
  pointer-events: none;
}
.login__footer_row > * {
  pointer-events: auto;
}
.login__footer_row .login__footer_links {
  display: flex;
  gap: 15px;
}
.login__footer_row .login__footer_links a {
  color: #4e4e4e;
  text-decoration: none;
  transition: color 0.2s;
}
.login__footer_row .login__footer_links a:hover {
  color: #f62d3e;
}

.login__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #999999;
  text-align: center;
  font-weight: 400;
  letter-spacing: 1.5px;
  position: absolute;
  right: 25px;
  bottom: 25px;
  z-index: 3;
}
.login__section-left .login__clock {
  display: none;
}
.login__section-right .login__clock {
  color: rgba(255, 255, 255, 0.6);
  bottom: auto;
  top: 20px;
}

.login__languages {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
}
.login__languages img {
  width: 22px;
  height: 22px;
  border-radius: 100px !important;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  opacity: 0.75;
  border: 1px solid transparent;
}
.login__languages img:hover {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}
.login__languages img.active {
  opacity: 1;
  border: 0;
  box-shadow: 0 0 0px 2px rgb(255, 255, 255), 0 0 0px 5px rgba(246, 45, 62, 0.3);
}

@media (max-width: 1024px) {
  .login__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .login__section-left {
    min-height: 50vh;
  }
  .login__section-right {
    display: none !important;
  }
  .login__footer_row {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .login__section-left {
    padding: 32px 24px;
  }
  .login__title {
    font-size: 28px;
  }
  .login__info-title {
    font-size: 32px;
  }
  .login__info-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .login__section-left {
    padding: 24px 16px;
  }
  .login__title {
    font-size: 22px;
  }
  .login__form-group {
    margin-bottom: 16px;
  }
  .login__input {
    padding: 11px 12px;
    font-size: 13px;
  }
  .login__info-title {
    font-size: 24px;
  }
  .login__info-subtitle {
    font-size: 14px;
  }
  .login__feature {
    gap: 12px;
  }
  .login__feature-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }
  .login__feature-text h3 {
    font-size: 14px;
  }
  .login__feature-text p {
    font-size: 12px;
  }
}
input[type=text],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
  margin: 0;
  border-radius: 6px;
  box-sizing: border-box;
}

p {
  margin: 0;
  line-height: 1.5;
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}
.window {
  position: fixed !important;
  z-index: 99999 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: alertSlideIn 0.28s ease-out both;
  will-change: opacity, transform;
}
.window .alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}
.window.alert-error .alert-icon {
  background: #ef4444;
}
.window.alert-success .alert-icon {
  background: #10b981;
}
.window.alert-loading .alert-icon {
  background: #fbbf24;
}
.window .alert-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  min-width: 0;
}
.window .alert-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}
.window .alert-body {
  color: #b0b0b0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.window .alert-body p {
  margin: 0;
}
.window .alert-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.window .alert-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}
.window.alert-closing {
  animation: none !important;
  opacity: 0 !important;
  transform: translate(-50%, -8px) !important;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out !important;
  pointer-events: none !important;
}
.window.panel {
  border: none !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgb(36, 44, 50) !important;
  overflow: hidden !important;
  min-width: 360px !important;
  max-width: 520px !important;
  flex-direction: row !important;
  padding: 0px 24px !important;
  gap: 18px !important;
}
.window .panel-header {
  display: none !important;
}
.window .panel-tool {
  display: none !important;
}
.window .messager-body,
.window .panel-body {
  background: transparent !important;
  border: none !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 20px 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
}
.window .messager-body p,
.window .panel-body p {
  margin: 0 !important;
  line-height: 1.5 !important;
}
.window.alert-success {
  background-color: #065f46 !important;
  background-image: linear-gradient(90deg, rgb(32, 61, 53) 0%, rgb(36, 44, 50) 67%, rgb(36, 44, 50) 100%) !important;
}
.window.alert-success .messager-body p,
.window.alert-success .panel-body p {
  color: #b0b0b0 !important;
  text-transform: none !important;
}
.window.alert-error {
  background-color: #3f0f0f !important;
  background-image: linear-gradient(90deg, rgb(84, 58, 58) 0%, rgb(36, 44, 50) 67%, rgb(36, 44, 50) 100%) !important;
}
.window.alert-error .messager-body p,
.window.alert-error .panel-body p {
  color: #b0b0b0 !important;
  text-transform: none !important;
}
.window.alert-loading {
  background-color: #453d1b !important;
  background-image: linear-gradient(90deg, rgb(84, 80, 59) 0%, rgb(36, 44, 50) 67%, rgb(36, 44, 50) 100%) !important;
}
.window.alert-loading .messager-body p,
.window.alert-loading .panel-body p {
  color: #b0b0b0 !important;
  text-transform: none !important;
}/*# sourceMappingURL=custom_login_new.css.map */