@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* src/styles.scss */
@font-face {
  font-family: "Hanken Grotesk Regular";
  src: local("Avenir Next"), url("./media/HankenGrotesk-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Hanken Grotesk Bold";
  src: local("Avenir Next"), url("./media/HankenGrotesk-Bold.ttf") format("opentype");
}
@font-face {
  font-family: "Hanken Grotesk SemiBold";
  src: local("Avenir Next"), url("./media/HankenGrotesk-SemiBold.ttf") format("opentype");
}
@font-face {
  font-family: "Hanken Grotesk Medium";
  src: local("Avenir Next"), url("./media/HankenGrotesk-Medium.ttf") format("opentype");
}
@font-face {
  font-family: "Manrope Light";
  src: local("Avenir Next"), url("./media/Manrope-Light.ttf") format("opentype");
}
@font-face {
  font-family: "Manrope Regular";
  src: local("Avenir Next"), url("./media/Manrope-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Manrope Bold";
  src: local("Avenir Next"), url("./media/Manrope-Bold.ttf") format("opentype");
}
@font-face {
  font-family: "Manrope Medium";
  src: local("Avenir Next"), url("./media/Manrope-Medium.ttf") format("opentype");
}
@font-face {
  font-family: "DM_Sans Medium";
  src: local("Avenir Next"), url("./media/DMSans_18pt-Medium.ttf") format("opentype");
}
@font-face {
  font-family: "DM_Sans Bold";
  src: local("Avenir Next"), url("./media/DMSans_18pt-Bold.ttf") format("opentype");
}
@font-face {
  font-family: "Hanken Grotesk SemiBold";
  src: local("Avenir Next"), url("./media/HankenGrotesk-SemiBold.ttf") format("opentype");
}
@font-face {
  font-family: "Manrope SemiBold";
  src: local("Avenir Next"), url("./media/Manrope-SemiBold.ttf") format("opentype");
}
@font-face {
  font-family: "DM_Sans SemiBold";
  src: local("Avenir Next"), url("./media/DMSans_18pt-SemiBold.ttf") format("opentype");
}
:root {
  --primary-green: #1e7d34;
  --primary-green-hover: #166128;
  --accent-yellow: #f5c800;
  --accent-yellow-dark: #c9a500;
  --bg-app: #eef0f7;
  --bg-card: #ffffff;
  --text-dark: #344054;
  --text-medium: #4a5568;
  --text-light: #475467;
  --border-color: #e2e8f0;
  --input-bg: #f7f8fa;
  --error-red: #e53e3e;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-btn: 0 4px 14px rgba(30, 125, 52, 0.35);
  --radius-card: 20px;
  --radius-input: 10px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Manrope Regular";
  background: var(--bg-app);
  color: var(--text-dark);
  min-height: 100vh;
}
a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  text-decoration: underline;
}
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.auth-card {
  background: var(--bg-card);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  display: flex;
  min-height: 100vh;
}
.auth-left {
  width: 45%;
  background: var(--accent-yellow);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.auth-left::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.auth-left::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.brand-logo .logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo .logo-mark svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.promo-text {
  z-index: 1;
}
.promo-text h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.promo-text p {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
.promo-mockup {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  z-index: 1;
  border-radius: 12px;
}
.auth-right {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
.auth-right > * {
  width: 100%;
  max-width: 420px;
}
.auth-right h1 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.auth-right .subtitle {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 32px;
}
.form-card {
  border-radius: 6px !important;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  background: var(--input-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-input);
  font-size: 0.88rem;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(30, 125, 52, 0.12);
}
input::placeholder,
textarea::placeholder {
  color: #98A2B3;
}
.ng-invalid.ng-touched,
.submitted .ng-invalid {
  border-color: var(--error-red) !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
  background-color: #fffafa !important;
}
.input-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
}
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-medium);
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-green);
  cursor: pointer;
}
.btn-primary {
  padding: 13px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: var(--radius-input);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.03em;
  font-family: "Manrope SemiBold";
  box-shadow: var(--shadow-btn);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 125, 52, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-outline {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--primary-green);
  border: 1.5px solid var(--primary-green);
  border-radius: var(--radius-input);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: "Manrope Bold";
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}
.auth-card.illustration-layout .auth-left {
  background: #f5f7ff;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.auth-card.illustration-layout .auth-left img {
  max-width: 240px;
  width: 100%;
}
.auth-center-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  max-width: 540px;
  width: 100%;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.auth-center-card img {
  max-width: 220px;
  margin-bottom: 28px;
}
.auth-center-card h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.auth-center-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 360px;
}
.auth-center-card .btn-primary {
  max-width: 240px;
}
.auth-footer-link {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 20px;
}
@media (max-width: 900px) {
  .auth-card {
    flex-direction: column;
  }
  .auth-left {
    width: 100%;
    padding: 32px 24px;
    height: auto;
    min-height: 240px;
    flex: none;
  }
  .auth-right {
    width: 100%;
    padding: 32px 24px;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .auth-wrapper {
    height: auto;
    min-height: 100vh;
  }
}
@keyframes shimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.skeleton-cell {
  height: 14px;
  border-radius: 6px;
  background:
    linear-gradient(
      90deg,
      #edf2f7 25%,
      #e2e8f0 50%,
      #edf2f7 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  display: inline-block;
  width: 80%;
}
.skeleton-cell.short {
  width: 50%;
}
.skeleton-cell.badge {
  width: 70px;
  height: 22px;
  border-radius: 50px;
}
.skeleton-cell.avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.skeleton-cell.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.skeleton-row td {
  padding: 18px 16px;
}
@keyframes spin-global {
  to {
    transform: rotate(360deg);
  }
}
.g-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0, 0, 102, 0.15);
  border-top-color: #000066;
  border-radius: 50%;
  animation: spin-global 0.7s linear infinite;
}
.g-spinner.sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.form-submit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  animation: fadein-overlay 0.15s ease;
}
@keyframes fadein-overlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.table-loading-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}
.thumb-container {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}
.thumb-container.mini {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.thumb-container.circle {
  border-radius: 50% !important;
}
.thumb-container app-auth-image {
  width: 100%;
  height: 100%;
}

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