@charset "UTF-8";

/* src/styles.scss */
:root {
  --green: #EF4444;
  --green-mid: #DC2626;
  --green-light: #FCA5A5;
  --green-dark: #0D0D0D;
  --surface: #FFFFFF;
  --input-bg: #F2F4F7;
  --input-border: #D0D5DD;
  --text: #1C1C2E;
  --text-soft: #667085;
  --error: #991B1B;
  --error-bg: #FEE2E2;
  --border: #e5e7eb;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}
button,
input,
select,
textarea {
  font-family: "IBM Plex Sans", sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: "IBM Plex Sans", sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  background: #f2f3f5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
app-root {
  display: block;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}
app-dashboard {
  display: block;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
}
app-home {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
app-login,
app-register,
app-verify-otp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding: 24px;
  background:
    linear-gradient(
      160deg,
      rgba(13, 13, 13, 0.88) 0%,
      rgba(70, 15, 18, 0.85) 50%,
      rgba(13, 13, 13, 0.92) 100%),
    url(/campus-hero.jpg) center center/cover no-repeat;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
}
app-login {
  display: block;
  padding: 0;
  overflow: hidden;
  background: none;
  min-height: 100vh;
  min-height: 100dvh;
}
app-explore {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #F8F9FA;
}
app-login::before,
app-register::before,
app-verify-otp::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
app-login::after,
app-register::after,
app-verify-otp::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.blob-mid {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.dots-top {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 1;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}
.dot.active {
  background: rgba(255, 255, 255, 0.85);
  width: 20px;
  border-radius: 4px;
}
.card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border-radius: 32px;
  padding: 40px 32px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: popIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.2s;
  cursor: pointer;
}
.back-link:hover {
  color: var(--green);
}
.back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-title {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.card-sub {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}
.stepper-bar {
  position: relative;
  margin-bottom: 24px;
  height: 28px;
  display: flex;
  align-items: center;
}
.stepper-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--input-border);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 2px;
}
.stepper-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--green) 0%,
      var(--green-mid) 100%);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.stepper-steps {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--input-border);
  color: var(--text-soft);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.step-circle.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
}
.step-circle.completed {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.step-container {
  animation: fadeIn 0.3s ease-in-out;
}
.step-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}
.step-buttons .btn-outline,
.step-buttons .btn-primary {
  margin-bottom: 0;
  flex: 1 1 0px;
  min-width: 0;
  height: 48px;
}
.step-buttons .btn-primary:only-child,
.step-buttons .btn-outline:only-child {
  flex: 0 1 180px;
  margin-left: auto;
}
.hero-art {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-icon-wrap {
  width: 96px;
  height: 96px;
  background:
    linear-gradient(
      135deg,
      var(--green) 0%,
      var(--green-light) 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.38);
  position: relative;
  overflow: hidden;
}
.hero-icon-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.hero-icon-wrap svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}
.badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #fff;
  color: var(--green);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.3px;
}
.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-title span {
  color: var(--green);
}
.hero-sub {
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.field {
  margin-bottom: 14px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  stroke: var(--text-soft);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: stroke 0.2s;
  z-index: 1;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
select {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 1.5px solid var(--input-border);
  border-radius: 14px;
  background: var(--input-bg);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input::placeholder {
  color: #aab0bb;
}
input:focus,
select:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(239, 68, 68, 0.14);
}
.input-wrap:focus-within .input-icon {
  stroke: var(--green);
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23667085' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color-scheme: light;
}
select option {
  background-color: #ffffff;
  color: #1C1C2E;
}
.phone-prefix {
  position: absolute;
  left: 44px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  pointer-events: none;
  z-index: 1;
}
input.with-prefix {
  padding-left: 92px;
}
.pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
  z-index: 1;
}
.pw-toggle:hover {
  opacity: 1;
}
.pw-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pw-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.pw-strength span {
  height: 4px;
  flex: 1;
  background: var(--input-border);
  border-radius: 4px;
  transition: background 0.25s;
}
.field-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 5px;
  padding-left: 2px;
}
.options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 22px;
}
.remember-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.remember-label input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
  cursor: pointer;
  margin: 0;
}
.forgot-link {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline;
  line-height: 1;
}
.forgot-link:hover {
  opacity: 0.75;
  background: none;
}
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
}
.terms-row input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--green);
  cursor: pointer;
  margin-top: 2px;
}
.terms-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.terms-text a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.terms-text a:hover {
  text-decoration: underline;
}
.btn-primary {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background:
    linear-gradient(
      135deg,
      var(--green) 0%,
      var(--green-mid) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    opacity 0.18s;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}
.btn-primary-sm,
.btn-outline.btn-primary-sm {
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 12px;
  margin-bottom: 0;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.44);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-outline {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(239, 68, 68, 0.06);
  transform: translateY(-2px);
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--text-soft);
  font-size: 13px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--input-border);
}
.btn-social {
  width: 100%;
  padding: 13px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  margin-bottom: 10px;
}
.btn-social:hover {
  border-color: #bbc2cc;
  background: #eceef2;
  transform: translateY(-1px);
}
.btn-social svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1.5px solid var(--border);
}
.stat {
  text-align: center;
  flex: 1;
}
.stat + .stat {
  border-left: 1.5px solid var(--border);
}
.stat-value {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 2px;
}
.error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--error-bg);
  border: 1px solid #f5c6c6;
  color: var(--error);
  font-size: 13px;
  padding: 11px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.success-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  color: #2E7D32;
  font-size: 13px;
  padding: 11px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.foot-link {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 22px;
}
.foot-link a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.foot-link a:hover {
  text-decoration: underline;
}
.bottom-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1.5px solid #f0f0f0;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(
      135deg,
      var(--green),
      var(--green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.logo-text span {
  color: var(--green);
}
.bottom-brand {
  margin-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.bottom-brand strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
@media (min-width: 1024px) {
  .card {
    max-width: 420px;
  }
}
@media (max-width: 1023px) and (min-width: 481px) {
  body {
    padding: 0;
  }
  .card {
    max-width: 440px;
    padding: 36px 28px 32px;
  }
  .hero-title {
    font-size: 26px;
  }
  .card-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  body {
    padding: 0;
    overflow-y: auto;
  }
  app-register,
  app-verify-otp {
    padding: 16px;
  }
  .dots-top {
    top: 20px;
  }
  .card {
    padding: 28px 18px 24px;
    border-radius: 24px;
    max-width: 100%;
  }
  .hero-title {
    font-size: 22px;
  }
  .hero-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 22px;
  }
  .hero-icon-wrap svg {
    width: 38px;
    height: 38px;
  }
  .card-title {
    font-size: 20px;
  }
  .card-sub {
    font-size: 13px;
    margin-bottom: 22px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  select {
    font-size: 16px;
    padding: 12px 12px 12px 42px;
  }
  input.with-prefix {
    padding-left: 88px;
  }
  .btn-primary,
  .btn-outline {
    height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }
  .step-buttons {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .step-buttons .btn-outline,
  .step-buttons .btn-primary {
    flex: none;
    width: 100%;
    height: 46px;
  }
  .step-buttons .btn-primary:only-child,
  .step-buttons .btn-outline:only-child {
    flex: none;
    width: 100%;
    margin-left: 0;
  }
  .terms-row {
    margin: 14px 0;
    gap: 8px;
  }
  .terms-text {
    font-size: 12px;
  }
  .options-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .bottom-brand {
    font-size: 11px;
    margin-top: 16px;
  }
}
@media (max-width: 360px) {
  .card {
    padding: 22px 14px 20px;
    border-radius: 20px;
  }
  .hero-title {
    font-size: 20px;
  }
  .card-title {
    font-size: 18px;
  }
}
.otp-box {
  background-color: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  opacity: 1 !important;
}
.onboard-wrapper {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  background: #0D0D0D;
}
.onboard-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.onboard-bg-circle--1 {
  width: 280px;
  height: 280px;
  top: -100px;
  right: -80px;
  background: rgba(255, 255, 255, 0.07);
}
.onboard-bg-circle--2 {
  width: 200px;
  height: 200px;
  bottom: 60px;
  left: -80px;
  background: rgba(255, 255, 255, 0.05);
}
.onboard-dots {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.onboard-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.onboard-dot.active {
  background: rgba(255, 255, 255, 0.95);
  width: 24px;
  border-radius: 4px;
}
.slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.slide-full {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  padding: 80px 24px 44px;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.05) 35%,
      rgba(0, 0, 0, 0.65) 75%,
      rgba(0, 0, 0, 0.92) 100%),
    url(/campus-hero.jpg) center center/cover no-repeat;
}
.slide-illu {
  margin-bottom: 28px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: floatIllu 4s ease-in-out infinite;
}
@keyframes floatIllu {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.slide1-text {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.onboard-brand {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.onboard-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.tap-hint-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  animation: pulse-hint 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.tap-hint-wrap svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.8);
}
@keyframes pulse-hint {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}
.illu-panel {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34vh;
  padding: 60px 24px 80px;
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.65) 100%),
    url(/campus-hero.jpg) center 20%/cover no-repeat;
}
.illu-panel .onboard-bg-circle--1 {
  top: -60px;
  right: -60px;
}
.illu-panel app-student-illustration {
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.28));
}
.sheet-panel {
  flex: 1;
  background: var(--surface);
  border-radius: 32px 32px 0 0;
  margin-top: -48px;
  padding: 32px 28px 36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.22);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sheet-panel.visible {
  opacity: 1;
  transform: translateY(0);
}
.sheet-handle {
  width: 40px;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin: 0 auto 24px;
}
.sheet-panel .hero-title {
  text-align: left;
  margin-bottom: 10px;
  font-size: 24px;
}
.sheet-panel .hero-sub {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 28px;
  max-width: 100%;
}
.sheet-panel .bottom-brand {
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.btn-ghost-onboard {
  width: 100%;
  padding: 11px;
  background: none;
  border: none;
  color: #EF4444;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-ghost-onboard:hover {
  color: #DC2626;
  text-decoration: underline;
}
.sheet-panel .bottom-brand strong {
  color: var(--text-soft);
}
.login-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
}
.login-wrapper::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.login-wrapper::after {
  content: "";
  position: absolute;
  bottom: 45%;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.login-illu-panel {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28vh;
  padding: 56px 24px 72px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.7) 100%),
    url(/campus-hero.jpg) center 18%/cover no-repeat;
}
.login-illu-panel app-student-illustration {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}
.login-dots {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.login-dots .onboard-dot {
  width: 7px;
  height: 7px;
}
.login-sheet {
  flex: 1;
  background: var(--surface);
  border-radius: 32px 32px 0 0;
  margin-top: -44px;
  padding: 28px 28px 36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  animation: sheetUp 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes sheetUp {
  from {
    transform: translateY(28px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.login-sheet-handle {
  width: 40px;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin: 0 auto 20px;
}
.login-sheet .card-title {
  font-size: 24px;
  margin-bottom: 4px;
}
.login-sheet .card-sub {
  margin-bottom: 20px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
