/* src/app/features/auth/auth-shared.css */
:root {
  --fg: #f7fbff;
  --muted: #9fb4ca;
  --panel: rgba(20, 35, 58, 0.86);
  --border: rgba(139, 232, 255, 0.16);
  --field: rgba(255, 255, 255, 0.06);
  --field-focus: rgba(255, 255, 255, 0.09);
  --brand:
    linear-gradient(
      120deg,
      #2563eb,
      #20b7d8 55%,
      #7cf5d2);
  --accent: #2563eb;
  --text-grad:
    linear-gradient(
      120deg,
      #69a7ff,
      #42d6e9 58%,
      #8ff7d8);
  --shadow: 0 30px 80px -26px rgba(82, 215, 255, 0.48);
}
:root:not(.dark-mode) {
  --fg: #172033;
  --muted: #5c6b80;
  --panel: rgba(255, 255, 255, 0.88);
  --border: rgba(37, 99, 235, 0.18);
  --field: #fff;
  --field-focus: #fff;
  --text-grad:
    linear-gradient(
      120deg,
      #1d4ed8,
      #087f9b 58%,
      #0d9676);
  --shadow: 0 30px 80px -28px rgba(37, 99, 235, 0.34);
}
.app-gradient-bg,
.auth-page {
  background:
    radial-gradient(
      circle at -10% 12%,
      rgba(37, 99, 235, 0.38),
      transparent 32%),
    radial-gradient(
      circle at 110% 94%,
      rgba(124, 245, 210, 0.28),
      transparent 34%),
    linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.2),
      transparent 34%),
    linear-gradient(
      225deg,
      rgba(56, 240, 198, 0.14),
      transparent 38%),
    linear-gradient(
      180deg,
      #0d1728,
      #09111f);
}
:root:not(.dark-mode) .app-gradient-bg,
:root:not(.dark-mode) .auth-page {
  background:
    radial-gradient(
      circle at -10% 12%,
      rgba(37, 99, 235, 0.2),
      transparent 32%),
    radial-gradient(
      circle at 110% 94%,
      rgba(32, 183, 216, 0.22),
      transparent 34%),
    linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.14),
      transparent 36%),
    linear-gradient(
      225deg,
      rgba(56, 240, 198, 0.18),
      transparent 42%),
    linear-gradient(
      180deg,
      #fbfdff,
      #f5fbff);
}
.auth-page {
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--fg);
  font-family:
    Inter,
    system-ui,
    sans-serif;
}
.auth-page__theme-toggle {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--fg);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.auth-page__wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 1400px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(22px, 4vh, 40px) 24px;
  display: grid;
  align-items: center;
  gap: 48px;
}
.auth-page--split .auth-page__wrap {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 440px);
}
.auth-page__brand {
  min-height: min(620px, calc(100svh - 80px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.auth-page__brand-logo {
  display: block;
  width: 260px;
  height: auto;
  object-fit: contain;
  transform: translate(-28px, 18px);
}
.auth-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--muted);
  background: rgba(37, 99, 235, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.auth-page__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #19d3ff;
}
.app-headline,
.auth-page__headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 700;
}
.auth-page__headline {
  max-width: 620px;
  margin: 0;
}
.auth-gradient-text {
  background: var(--text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-page__copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.auth-page__features {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.auth-page__features li {
  display: grid;
  grid-template-columns: 38px 1fr;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.32;
}
.auth-page__features strong {
  display: block;
  color: var(--fg);
}
.auth-card {
  width: 100%;
  border-radius: 8px;
  padding: 1px;
  background: var(--brand);
  box-shadow: var(--shadow);
}
.auth-card__inner {
  border-radius: 8px;
  padding: 34px;
  background: var(--panel);
  color: var(--fg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.auth-card__header {
  margin-bottom: 24px;
  text-align: left;
}
.auth-card__logo {
  display: block;
  height: auto;
  object-fit: contain;
}
.auth-page--compact .auth-card__header,
.auth-page--compact .auth-card__footer {
  text-align: center;
}
.auth-card__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}
.auth-card__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.auth-form,
.auth-field,
.auth-card__footer {
  display: grid;
  gap: 16px;
}
.auth-field {
  gap: 8px;
}
.auth-field__label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.auth-field__control {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-field__input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(127, 145, 170, 0.28);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--field);
  color: var(--fg);
  font: inherit;
}
.auth-field__input::placeholder {
  color: var(--muted);
  opacity: 0.62;
}
.auth-field__input:focus {
  border-color: transparent;
  background: var(--field-focus);
  box-shadow: 0 0 0 3px rgba(94, 231, 255, 0.28);
}
.auth-field__control--password .auth-field__input {
  padding-right: 46px;
}
.auth-field__toggle {
  position: absolute;
  right: 8px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.auth-field__error {
  color: #fca5a5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.auth-submit {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  margin-top: 4px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.auth-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.auth-card__footer {
  gap: 8px;
  margin-top: 24px;
}
.auth-card__footer p {
  margin: 0;
}
.auth-page__credit,
.auth-card__footer {
  color: var(--muted);
  opacity: 0.76;
  font-size: 14px;
}
.auth-page__credit {
  margin: 22px 0 0 38px;
}
.auth-link {
  color: #0057ff;
  font-weight: 800;
  text-decoration: none;
}
.auth-link:hover {
  color: #003fbd;
  text-decoration: underline;
}
.auth-message {
  margin: 18px 0 0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}
.auth-message--success {
  background: #dcfce7;
  color: #14532d;
}
.auth-message--error {
  background: #fee2e2;
  color: #7f1d1d;
}
.auth-message--warning {
  background: #fef3c7;
  color: #78350f;
}
@media (max-width: 980px) {
  .auth-page--split .auth-page__wrap {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .auth-page__brand {
    display: none;
  }
  .auth-card__header,
  .auth-card__footer {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .auth-page__wrap {
    padding: 72px 16px 24px;
  }
  .auth-card__inner {
    padding: 28px 22px;
  }
  .auth-card__title {
    font-size: 28px;
  }
  .auth-page__theme-toggle {
    top: 16px;
    right: 16px;
  }
}

/* src/app/features/historial/ver-clip/ver-clip-share.css */
.ver-clip__share-header--youtube::before {
  background: #ff0033;
}
.ver-clip__share-modal {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.ver-clip__share-back {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 18px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}
.ver-clip__share-back:hover {
  color: var(--fg);
}
.ver-clip__share-form,
.ver-clip__share-result {
  display: grid;
  gap: 18px;
  padding: 26px 30px 30px;
}
.ver-clip__share-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 150px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.ver-clip__share-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid color-mix(in srgb, currentColor 25%, transparent);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: ver-clip-spin 0.8s linear infinite;
}
.ver-clip__share-spinner--large {
  width: 42px;
  height: 42px;
  border-width: 4px;
  color: var(--accent);
}
.ver-clip__share-empty {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: color-mix(in srgb, var(--panel) 86%, var(--bg));
}
.ver-clip__share-empty img {
  flex: 0 0 54px;
  object-fit: contain;
}
.ver-clip__share-empty strong {
  display: block;
  color: var(--fg);
  font-size: 15px;
}
.ver-clip__share-empty p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.ver-clip__share-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius: 8px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  color: var(--muted);
  font-size: 13px;
}
.ver-clip__share-source strong {
  color: var(--accent);
}
.ver-clip__share-fields-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
}
.ver-clip__share-field {
  display: grid;
  gap: 7px;
}
.ver-clip__share-field > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 800;
}
.ver-clip__share-field small {
  color: var(--muted);
  font-weight: 600;
}
.ver-clip__share-field input,
.ver-clip__share-field textarea,
.ver-clip__share-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ver-clip__share-field textarea {
  min-height: 86px;
  resize: vertical;
}
.ver-clip__share-field input:focus,
.ver-clip__share-field textarea:focus,
.ver-clip__share-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent);
}
.ver-clip__share-error {
  margin: 0;
  border: 1px solid color-mix(in srgb, #ef4444 42%, var(--border));
  border-radius: 8px;
  padding: 11px 13px;
  background: color-mix(in srgb, #ef4444 8%, transparent);
  color: #ef4444;
  font-size: 13px;
  line-height: 1.45;
}
.ver-clip__share-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
}
.ver-clip__share-primary,
.ver-clip__share-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.ver-clip__share-primary {
  border: 1px solid transparent;
  background: #ff0033;
  color: #fff;
}
.ver-clip__share-primary:hover:not(:disabled) {
  background: #dc002c;
}
.ver-clip__share-secondary {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
}
.ver-clip__share-secondary:hover {
  border-color: var(--accent);
}
.ver-clip__share-primary:disabled,
.ver-clip__modal-close:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ver-clip__share-status {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 160px;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  background: color-mix(in srgb, var(--panel) 86%, var(--bg));
  color: var(--muted);
  text-align: center;
}
.ver-clip__share-status p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.ver-clip__share-status-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 27px;
  font-weight: 900;
}
.ver-clip__share-status--success {
  border-color: color-mix(in srgb, #22c55e 42%, var(--border));
}
.ver-clip__share-status--success .ver-clip__share-status-icon {
  background: color-mix(in srgb, #22c55e 12%, transparent);
  color: #22c55e;
}
.ver-clip__share-status--error {
  border-color: color-mix(in srgb, #ef4444 42%, var(--border));
}
.ver-clip__share-status--error .ver-clip__share-status-icon {
  background: color-mix(in srgb, #ef4444 12%, transparent);
  color: #ef4444;
}
@media (max-width: 768px) {
  .ver-clip__share-form,
  .ver-clip__share-result {
    padding: 22px;
  }
  .ver-clip__share-fields-row {
    grid-template-columns: 1fr;
  }
  .ver-clip__share-actions {
    flex-direction: column-reverse;
  }
  .ver-clip__share-primary,
  .ver-clip__share-secondary {
    width: 100%;
    box-sizing: border-box;
  }
}

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  background: #f7fbff;
  color: var(--fg);
}
html.dark-mode,
html.dark-mode body {
  background: var(--p-surface-400);
}
.auth-link:hover {
  text-decoration: underline;
}

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