/*!********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyAccount/assets/styles/home.scss ***!
  \********************************************************************************************************************************/
@charset "UTF-8";
/**
 * RESET & BASE LAYOUT — v2
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  transition: background 0.3s;
  -webkit-font-smoothing: antialiased;
}

.app {
  display: flex;
  height: 100vh;
  width: 100%;
  background: var(--ct-page);
}

.mobile-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--mob-toggle-bg);
  border: 1px solid var(--ct-border);
  color: var(--mob-toggle-color);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s, color 0.3s;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
}
.mobile-overlay.show {
  display: block;
}

.mobile-settings-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--mob-toggle-bg);
  border: 1px solid var(--ct-border);
  color: var(--mob-toggle-color);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s, color 0.3s;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.confirm-dialog {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  min-width: 320px;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.confirm-message {
  font-size: 15px;
  line-height: 1.5;
  color: #1f2937;
  margin-bottom: 20px;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.confirm-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.confirm-btn--cancel {
  background: #f3f4f6;
  color: #6b7280;
}

.confirm-btn--cancel:hover {
  background: #e5e7eb;
}

.confirm-btn--ok {
  background: #3b82f6;
  color: #fff;
}

.confirm-btn--ok:hover {
  background: #2563eb;
}

.toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  max-width: 360px;
}
.toast--info {
  background: var(--ct-card);
  color: var(--ct-ink);
  border: 1px solid var(--ct-border);
}
.toast--success {
  background: #16a34a;
  color: #fff;
}
.toast--error {
  background: #ef4444;
  color: #fff;
}

.toast-enter-active {
  animation: toastIn 0.3s ease-out;
}

.toast-leave-active {
  animation: toastOut 0.2s ease-in forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}
/**
 * HOME PAGE — Light Teal Theme
 */
.home-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #FAFFFE;
  position: relative;
  overflow: hidden;
}
.home-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(20, 184, 166, 0.08), transparent 50%), radial-gradient(circle at 70% 80%, rgba(15, 118, 110, 0.06), transparent 50%);
  pointer-events: none;
}
.home-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 118, 110, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 118, 110, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

/** Header **/
.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  position: relative;
  z-index: 1;
}

.home-logo {
  font-size: 22px;
  font-weight: 900;
  color: #1A1A1A;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.home-logo span {
  color: #14B8A6;
}

.home-header-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.home-header-btn--login {
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.1);
  color: #0F766E;
}
.home-header-btn--login:hover {
  background: rgba(15, 118, 110, 0.1);
  color: #115E59;
}

.home-header-btn--account {
  background: #14B8A6;
  color: #fff;
  box-shadow: 0 3px 12px rgba(20, 184, 166, 0.25);
}
.home-header-btn--account:hover {
  background: #0F766E;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

/** Hero **/
.home-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  color: #0F766E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.home-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 600px;
  letter-spacing: -0.02em;
}
.home-title span {
  color: #14B8A6;
}

.home-subtitle {
  font-size: clamp(16px, 2.5vw, 19px);
  color: #6B7280;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
}

.home-cta--login {
  background: #14B8A6;
  color: #fff;
  box-shadow: 0 3px 12px rgba(20, 184, 166, 0.25);
}
.home-cta--login:hover {
  background: #0F766E;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(20, 184, 166, 0.3);
}
.home-cta--login:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(20, 184, 166, 0.25);
}

.home-cta--account {
  background: #14B8A6;
  color: #fff;
  box-shadow: 0 3px 12px rgba(20, 184, 166, 0.25);
}
.home-cta--account:hover {
  background: #0F766E;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(20, 184, 166, 0.3);
}
.home-cta--account:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(20, 184, 166, 0.25);
}

.home-cta-arrow {
  transition: transform 0.2s;
}

.home-cta:hover .home-cta-arrow {
  transform: translateX(3px);
}

/** Footer **/
.home-footer {
  padding: 24px 32px;
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  position: relative;
  z-index: 1;
}
.home-footer a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}
.home-footer a:hover {
  color: #14B8A6;
}

/** Media **/
@media (max-width: 480px) {
  .home-header {
    padding: 16px 20px;
  }
  .home-hero {
    padding: 40px 20px;
  }
  .home-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/*# sourceMappingURL=home.css.map*/