/* src/styles.scss */
body {
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #161B26;
}
h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #161B26;
  margin: 0;
}
h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #161B26;
  margin: 0;
}
h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #161B26;
  margin: 0;
}
p {
  font-size: 16px;
  line-height: 1.5;
  color: #161B26;
  margin: 0;
}
.text-secondary {
  color: #6E7687;
}
.text-small {
  font-size: 14px;
  line-height: 1.5;
}
.text-caption {
  font-size: 12px;
  line-height: 1.4;
  color: #6E7687;
}
.text-link {
  color: #0A48CB;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.title-card {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  background-color: #F3F6FB;
}
.cdk-overlay-container {
  z-index: 10000;
}
.mat-mdc-snack-bar-container {
  margin-bottom: 40px !important;
}
.kp-field {
  width: 100%;
}
.kp-field .mat-mdc-form-field {
  width: 100%;
}
.kp-field .mdc-text-field--outlined .mdc-notched-outline__leading {
  border-radius: 14px 0 0 14px;
}
.kp-field .mdc-text-field--outlined .mdc-notched-outline__trailing {
  border-radius: 0 14px 14px 0;
}
.phone-field-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.phone-field-row .prefix-select {
  width: 110px;
  flex-shrink: 0;
}
.phone-field-row .number-input {
  flex: 1;
}
.dropdown-arrow {
  pointer-events: none;
  color: #6E7687;
}
.scroll-sentinel {
  height: 1px;
  width: 100%;
}
.loading-more {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.lazy-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid #E5E8EF;
  border-top-color: #0047BB;
  border-radius: 9999px;
  animation: lazy-spin 0.7s linear infinite;
}
.lazy-spinner--sm {
  width: 18px;
  height: 18px;
  border-width: 2px;
}
.lazy-spinner--light {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
}
@keyframes lazy-spin {
  to {
    transform: rotate(360deg);
  }
}
.kp-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}
.kp-badge--popolare {
  background: #DCE7FF;
  color: #0047BB;
}
.kp-badge--disponibile {
  background: #E8F8EE;
  color: #00A63E;
}
.kp-badge--non-disponibile {
  background: #FFEAEA;
  color: #FF3B30;
}
.kp-badge--in-corso {
  background: #FFF1E5;
  color: #FF7A00;
}
.kp-badge--completato {
  background: #E5E8EF;
  color: #6E7687;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-field__label {
  font-size: 14px;
  font-weight: 600;
  color: #161B26;
}
.auth-field__input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E5E8EF;
  padding: 14px 16px;
}
.auth-field__input-wrapper--error {
  border-color: #FF3B30;
}
.auth-field__icon {
  color: #6E7687;
  font-size: 20px;
  flex-shrink: 0;
}
.auth-field__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #161B26;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
}
.auth-field__input::placeholder {
  color: #6E7687;
}
.auth-field__eye-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #6E7687;
}
.auth-field__eye-btn .material-icons {
  font-size: 20px;
}
.auth-field__hint {
  font-size: 12px;
  color: #6E7687;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 16px;
}
.auth-divider__line {
  flex: 1;
  height: 1px;
  background: #E5E8EF;
}
.auth-divider__text {
  font-size: 14px;
  color: #6E7687;
}
.auth-btn {
  width: 100%;
  padding: 16px 16px;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 600;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.auth-btn--primary {
  background: #0047BB;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.auth-btn--primary:hover {
  background: #1557E5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.auth-btn--outline {
  background: #FFFFFF;
  color: #0047BB;
  border: 2px solid #0047BB;
}
.auth-btn--outline:hover {
  background: #DCE7FF;
}
.snackbar-error {
  --mdc-snackbar-container-color: #FF3B30;
}
.snackbar-success {
  --mdc-snackbar-container-color: #00C853;
}
.pac-container {
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  border: 1px solid #E5E8EF;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  padding: 4px 0;
}
.pac-container::after {
  display: none;
}
.pac-item {
  font-size: 14px;
  color: #161B26;
  padding: 10px 16px;
  cursor: pointer;
  border-top: none;
  line-height: 1.4;
}
.pac-item:hover,
.pac-item.pac-item-selected {
  background: #F3F6FB;
}
.pac-item-query {
  font-size: 14px;
  font-weight: 600;
  color: #161B26;
}
.pac-matched {
  font-weight: 600;
}
.pac-icon {
  display: none;
}
@keyframes page-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-slide-left {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-slide-right {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
  touch-action: manipulation;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (prefers-reduced-motion) {
  .cdk-overlay-backdrop {
    transition-duration: 1ms;
  }
}
.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .cdk-overlay-backdrop-showing {
    opacity: .6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, .32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,
.cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

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