/* AulaGlobal Auth PRO */

.ag-auth-page {
  min-height: calc(100vh - 68px);
  padding: 74px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 22%, rgba(124,58,237,.28), transparent 34%),
    radial-gradient(circle at 80% 26%, rgba(35,139,255,.24), transparent 34%),
    linear-gradient(135deg, #050b1c 0%, #081225 55%, #06081a 100%);
}

.ag-auth-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .82fr;
  gap: 64px;
  align-items: center;
}

.ag-auth-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(168,85,247,.32);
  border-radius: 999px;
  color: #d8b4fe;
  background: rgba(124,58,237,.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ag-auth-copy h1 {
  max-width: 680px;
  margin: 22px 0 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
}

.ag-auth-copy p {
  max-width: 610px;
  margin: 0;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 400;
}

.ag-auth-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.ag-auth-points div {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.ag-auth-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.ag-auth-points small {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.45;
}

.ag-auth-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  color: #101828;
  background: rgba(255,255,255,.96);
  box-shadow: 0 38px 110px rgba(0,0,0,.34);
}

.ag-auth-card-head span {
  color: #7c3aed;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ag-auth-card-head h2 {
  margin: 8px 0 6px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.055em;
}

.ag-auth-card-head p {
  margin: 0 0 26px;
  color: #667085;
  font-size: 14px;
  font-weight: 400;
}

.ag-auth-card label {
  display: block;
  margin: 16px 0 8px;
  color: #101828;
  font-size: 13px;
  font-weight: 800;
}

.ag-auth-card input,
.ag-auth-card select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(16,24,40,.14);
  border-radius: 15px;
  color: #101828;
  background: #ffffff;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.ag-auth-card input:focus,
.ag-auth-card select:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}

.ag-auth-submit {
  width: 100%;
  height: 54px;
  margin-top: 24px;
  border: 0;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #238bff);
  box-shadow: 0 18px 42px rgba(35,139,255,.22);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ag-auth-bottom {
  margin-top: 20px;
  text-align: center;
  color: #667085;
  font-size: 13px;
}

.ag-auth-bottom a {
  color: #7c3aed;
  font-weight: 900;
}

.alert.error {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 14px;
  color: #991b1b;
  background: #fee2e2;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .ag-auth-shell {
    grid-template-columns: 1fr;
  }

  .ag-auth-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ag-auth-page {
    padding: 42px 0;
  }

  .ag-auth-shell {
    width: min(100% - 28px, 1180px);
    gap: 32px;
  }

  .ag-auth-copy h1 {
    font-size: 40px;
  }

  .ag-auth-card {
    padding: 24px;
    border-radius: 22px;
  }
}
