.auth-page {
  min-height: 100vh;
  width: 100%;

  padding: 28px 24px;

  display: flex;
  justify-content: center;

  background:
    radial-gradient(circle at 80% 18%, rgba(0, 140, 255, 0.22), transparent 22%),
    radial-gradient(circle at 10% 0%, rgba(0, 89, 255, 0.20), transparent 28%),
    linear-gradient(180deg, #020914 0%, #000814 100%);
}

.auth-content {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.brand-logo {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 34px;
}

.logo-icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  filter: drop-shadow(0 0 22px rgba(0, 140, 255, 0.65));
}

.logo-icon svg {
  width: 118px;
  height: 118px;
}

.logo-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 7px;
  line-height: 1.05;
}

.logo-title span {
  display: block;
  color: var(--primary);
}

.logo-subtitle {
  margin-top: 10px;
  color: #c5cad3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
}

.auth-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;

  font-size: 28px;
  font-weight: 900;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 16px;
}

.input-group {
  position: relative;
  margin-top: 14px;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);

  width: 22px;
  height: 22px;

  color: #a8b1c1;
}

.input-icon svg,
.input-action svg {
  width: 100%;
  height: 100%;
}

.input-action {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

  width: 22px;
  height: 22px;

  color: #a8b1c1;
  cursor: pointer;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 22px 0;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.check-label input {
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;

  accent-color: var(--primary);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 28px 0 16px;

  color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.auth-footer {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

.auth-footer a,
.link-blue {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 380px) {
  .logo-title {
    font-size: 34px;
    letter-spacing: 5px;
  }

  .auth-page {
    padding-left: 18px;
    padding-right: 18px;
  }
}