/* ─── MetaMind SRCP — Accounts Pages ─── */

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.deco {
  position: fixed;
  border-radius: 50%;
  border: 2px dashed rgba(0, 181, 184, 0.2);
  pointer-events: none;
}

/* hide decorative circles on small screens — they clutter mobile */
@media (max-width: 576px) {
  .deco { display: none; }
}

.auth-wrap {
  width: 100%;
  max-width: 460px;
  padding: 1rem;
}

.auth-brand {
  text-align: center;
  margin-bottom: 1.8rem;
}
.auth-brand a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}
.auth-brand a em { font-style: normal; color: var(--teal); }
.auth-brand p {
  font-size: 0.88rem;
  color: #6c8a95;
  font-weight: 600;
  margin: 0.2rem 0 0;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.2s;
}
.back-home:hover { color: var(--teal-dark); }

.auth-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid rgba(0, 181, 184, 0.2);
  overflow: hidden;
}
.auth-card .card-header-teal {
  background: var(--teal);
  padding: 1.1rem 1.8rem;
}
.auth-card .card-header-teal h5 {
  color: var(--white);
  font-weight: 800;
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.auth-card .card-body-inner { padding: 2rem 1.8rem; }

.btn-teal-block { width: 100%; padding: 0.7rem; }

.auth-footer-note {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: #6c8a95;
  font-weight: 600;
}
.auth-footer-note a { color: var(--teal); font-weight: 700; text-decoration: none; }

.auth-copy { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: #aaa; }

/* ── Responsive ── */
@media (max-width: 576px) {
  body { align-items: flex-start; padding-top: 1.5rem; }

  .auth-wrap { padding: 0.75rem; }

  .auth-brand a { font-size: 1.5rem; }

  .auth-card .card-body-inner { padding: 1.4rem 1.2rem; }

  /* register form: stack 2-col grid to 1 col */
  .auth-card .row > [class*="col-md-6"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
