.login-page {
  min-height: 100vh;
  margin: 0;
  font-family: roboto-regular, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b1d3a;
  overflow-x: hidden;
}

.login-page__wrap {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.login-page__brand {
  flex: 1;
  display: none;
  position: relative;
  padding: 48px;
  color: #fff;
  background: linear-gradient(145deg, #0078d4 0%, #009efb 45%, #00c6ff 100%);
  overflow: hidden;
}

@media (min-width: 992px) {
  .login-page__brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.login-page__brand::before,
.login-page__brand::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.login-page__brand::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
}

.login-page__brand::after {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -40px;
}

.login-page__brand-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.login-page__brand-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.login-page__brand h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.25;
}

.login-page__brand p {
  font-size: 1rem;
  opacity: 0.92;
  line-height: 1.6;
  margin: 0 0 32px;
}

.login-page__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.login-page__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.login-page__features i {
  width: 28px;
  text-align: center;
  opacity: 0.9;
}

.login-page__panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: #f4f7fb;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 35, 70, 0.12);
  padding: 40px 36px 36px;
}

.login-card__header {
  text-align: center;
  margin-bottom: 28px;
}

.login-card__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #009efb, #0078d4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 158, 251, 0.35);
}

.login-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2b42;
  margin: 0 0 6px;
}

.login-card__subtitle {
  font-size: 0.9rem;
  color: #6c7a89;
  margin: 0;
}

.login-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff5f5;
  border: 1px solid #ffc9c9;
  color: #c92a2a;
  font-size: 0.875rem;
  line-height: 1.45;
}

.login-alert i {
  margin-top: 2px;
  flex-shrink: 0;
}

.login-field {
  margin-bottom: 20px;
}

.login-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3d4f63;
  margin-bottom: 8px;
}

.login-field__wrap {
  position: relative;
}

.login-field__wrap > i.fa {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa8b5;
  font-size: 15px;
  pointer-events: none;
}

.login-field__wrap--password .form-control {
  padding-right: 44px;
}

.login-field__toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: #9aa8b5;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}

.login-field__toggle:hover {
  color: #009efb;
  background: rgba(0, 158, 251, 0.08);
}

.login-field__wrap .form-control {
  height: 46px;
  padding-left: 42px;
  padding-right: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
}

.login-field__wrap .form-control:focus {
  border-color: #009efb;
  box-shadow: 0 0 0 3px rgba(0, 158, 251, 0.15);
}

.login-btn {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #009efb 0%, #0078d4 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(0, 158, 251, 0.4);
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 158, 251, 0.45);
  color: #fff;
}

.login-btn:active {
  transform: translateY(0);
}

.login-card__footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
}
