/* Famílias de Luziânia — app styles */

:root {
    --white: #ffffff;
    --sky: #4A90C8;
    --sky-deep: #2B6EA3;
    --sky-soft: #e8f2fa;
    --terracotta: #C45C26;
    --terracotta-soft: rgba(196, 92, 38, 0.12);
    --ink: #1a2e3d;
    --ink-muted: #4a6275;
    --ink-faint: #7a929f;
    --line: rgba(43, 110, 163, 0.14);
    --shadow-sm: 0 2px 8px rgba(26, 46, 61, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 46, 61, 0.1);
    --shadow-lg: 0 16px 48px rgba(26, 46, 61, 0.14);
    --radius: 12px;
    --radius-lg: 18px;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
    --header-h: 64px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--header-h);
    padding: 0 1.25rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.site-header__brand {
    text-decoration: none;
    color: var(--ink);
}

.site-header__brand-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-chip__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sky-soft);
}

.user-chip__name {
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .user-chip__name {
        display: none;
    }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: var(--sky-deep);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(43, 110, 163, 0.28);
}

.btn--primary:hover {
    background: #245a88;
}

.btn--secondary {
    background: var(--white);
    color: var(--sky-deep);
    border-color: var(--sky);
}

.btn--secondary:hover {
    background: var(--sky-soft);
}

.btn--outline {
    background: transparent;
    color: var(--sky-deep);
    border-color: var(--line);
}

.btn--outline:hover {
    border-color: var(--sky);
    background: var(--sky-soft);
}

.btn--ghost {
    background: transparent;
    color: var(--ink-muted);
    border-color: transparent;
}

.btn--ghost:hover {
    color: var(--sky-deep);
    background: var(--sky-soft);
}

.btn--sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
}

.btn--icon {
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
}

.badge--dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    border: 2px solid var(--white);
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
    overflow: hidden;
    animation: heroFadeIn 1s ease both;
}

.hero.is-compact {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url("../img/igreja-rosario.webp") center center / cover no-repeat;
    background-image: image-set(
        url("../img/igreja-rosario.webp") type("image/webp"),
        url("../img/igreja-rosario.jpg") type("image/jpeg")
    );
    transform: scale(1.03);
    transition: transform 0.8s ease;
}

.hero.is-compact .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 242, 250, 0.78) 38%, rgba(74, 144, 200, 0.35) 100%),
        linear-gradient(to top, rgba(26, 46, 61, 0.25) 0%, transparent 45%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    text-align: center;
    animation: heroContentUp 0.9s ease 0.15s both;
}

.hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sky-deep);
}

.hero__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.hero__lead {
    margin: 0 auto 2rem;
    max-width: 34rem;
    font-size: 1.125rem;
    color: var(--ink-muted);
}

.hero.is-compact .hero__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.hero.is-compact .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heroContentUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search */

.search-form__wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 2px solid rgba(74, 144, 200, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form__wrap:focus-within {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(74, 144, 200, 0.18), var(--shadow-md);
}

.search-form__icon {
    flex-shrink: 0;
    align-self: center;
    margin-left: 1.15rem;
    color: var(--sky);
}

.search-form__input {
    flex: 1;
    min-width: 0;
    padding: 1.15rem 1rem;
    border: none;
    background: transparent;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    outline: none;
}

.search-form__input::placeholder {
    color: var(--ink-faint);
}

.search-form__submit {
    flex-shrink: 0;
    margin: 0.45rem;
    padding-inline: 1.5rem;
    border-radius: calc(var(--radius-lg) - 4px);
}

@media (max-width: 560px) {
    .search-form__wrap {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .search-form__icon {
        display: none;
    }

    .search-form__input {
        padding: 1rem;
    }

    .search-form__submit {
        margin: 0 0.45rem 0.45rem;
        width: calc(100% - 0.9rem);
    }
}

/* Filter chips */

.filter-bar {
    margin-top: 1.75rem;
    animation: heroContentUp 0.9s ease 0.3s both;
}

.filter-bar__label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
}

.chip {
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(74, 144, 200, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.chip:hover {
    border-color: var(--sky);
    color: var(--sky-deep);
}

.chip.is-active {
    background: var(--sky-deep);
    border-color: var(--sky-deep);
    color: var(--white);
}

.chip--accent.is-active {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

/* Results */

.results-section {
    padding: 0 1.25rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-section__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.results-section__heading {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.results-section__count {
    margin: 0.25rem 0 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
}

.view-toggle {
    display: inline-flex;
    padding: 3px;
    background: var(--sky-soft);
    border-radius: 999px;
}

.view-toggle__btn {
    padding: 0.45rem 1rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-muted);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.view-toggle__btn.is-active {
    background: var(--white);
    color: var(--sky-deep);
    box-shadow: var(--shadow-sm);
}

.results-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 960px) {
    .results-layout.has-panel {
        grid-template-columns: 1fr min(340px, 36%);
    }
}

.results-main {
    min-width: 0;
}

.empty-state,
.loading-state,
.tree-hint {
    text-align: center;
    color: var(--ink-muted);
    padding: 2rem 1rem;
}

/* Person list */

.person-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.person-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-align: left;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), transform 0.15s ease;
}

.person-card:hover {
    border-color: var(--sky);
    box-shadow: var(--shadow-sm);
}

.person-card.is-selected {
    border-color: var(--sky-deep);
    background: var(--sky-soft);
    box-shadow: inset 3px 0 0 var(--sky-deep);
}

.person-card__photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--sky-soft);
    flex-shrink: 0;
}

.person-card__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--sky);
}

.person-card__body {
    flex: 1;
    min-width: 0;
}

.person-card__name {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.person-card__meta {
    margin: 0.15rem 0 0;
    font-size: 0.875rem;
    color: var(--ink-muted);
}

.tag {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--sky-soft);
    color: var(--sky-deep);
}

.tag--warn {
    background: var(--terracotta-soft);
    color: var(--terracotta);
}

/* Tree */

.tree-root {
    padding: 0.5rem 0;
}

.tree {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.tree ul {
    list-style: none;
    margin: 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--line);
    margin-left: 0.75rem;
}

.tree li {
    position: relative;
    padding: 0.35rem 0 0.35rem 0.5rem;
}

.tree li::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 1.1rem;
    width: 1rem;
    height: 2px;
    background: var(--line);
}

.tree-node {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    animation: treeExpand 0.35s ease both;
}

.tree-node:hover {
    background: var(--sky-soft);
}

.tree-node.is-highlight {
    background: var(--sky-soft);
    border-color: var(--sky);
    box-shadow: inset 3px 0 0 var(--terracotta);
}

.tree-node.is-highlight .tree-node__name {
    color: var(--sky-deep);
    font-weight: 700;
}

.tree-node__toggle {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    border: none;
    background: var(--sky-soft);
    color: var(--sky-deep);
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.tree-node__toggle:disabled {
    opacity: 0.3;
    cursor: default;
}

.tree-node__name {
    font-size: 0.9375rem;
}

.tree-node__dates {
    font-size: 0.8125rem;
    color: var(--ink-faint);
}

.tree-branch {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.tree-branch.is-collapsed {
    max-height: 0 !important;
    opacity: 0;
}

@keyframes treeExpand {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Person panel */

.person-panel {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    animation: slideInPanel 0.35s ease both;
}

@keyframes slideInPanel {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.person-panel__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ink-faint);
    cursor: pointer;
    border-radius: 50%;
}

.person-panel__close:hover {
    background: var(--sky-soft);
    color: var(--ink);
}

.person-panel__hero {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
}

.person-panel__photo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--sky-soft);
    flex-shrink: 0;
}

.person-panel__name {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
}

.person-panel__dates {
    margin: 0.35rem 0 0.5rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
}

.person-panel__facts {
    margin: 0 0 1rem;
    display: grid;
    gap: 0.5rem;
}

.person-panel__facts dt {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
}

.person-panel__facts dd {
    margin: 0.1rem 0 0;
    font-size: 0.9375rem;
}

.person-panel__bio {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
}

.person-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Dropdown (notifications) */

.dropdown {
    position: fixed;
    top: calc(var(--header-h) + 0.5rem);
    right: 1rem;
    z-index: 200;
    width: min(360px, calc(100vw - 2rem));
    max-height: min(420px, calc(100vh - var(--header-h) - 2rem));
    overflow: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.2s ease both;
}

.dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: var(--white);
}

.dropdown__empty {
    padding: 1.5rem;
    text-align: center;
    color: var(--ink-muted);
    margin: 0;
}

.notif-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notif-item {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background var(--transition);
}

.notif-item:hover {
    background: var(--sky-soft);
}

.notif-item.is-unread {
    background: rgba(74, 144, 200, 0.06);
}

.notif-item__title {
    margin: 0;
    font-weight: 600;
    font-size: 0.9375rem;
}

.notif-item__msg {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: var(--ink-muted);
}

.notif-item__time {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: var(--ink-faint);
}

/* Modals */

.modal {
    width: min(560px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    padding: 0;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal::backdrop {
    background: rgba(26, 46, 61, 0.45);
    backdrop-filter: blur(4px);
}

.modal--sm {
    width: min(440px, calc(100vw - 2rem));
}

.modal__form {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 2rem);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--line);
}

.modal__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.modal__close {
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ink-faint);
    cursor: pointer;
    border-radius: 50%;
}

.modal__close:hover {
    background: var(--sky-soft);
}

.modal__body {
    padding: 1.25rem;
    overflow-y: auto;
}

.modal__intro {
    margin: 0 0 1rem;
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

.modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--line);
    background: #fafcfd;
}

/* Forms */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field--autocomplete {
    position: relative;
}

.field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.field input,
.field select,
.field textarea {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(74, 144, 200, 0.15);
}

.field__hint {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--ink-faint);
}

.photo-preview {
    margin-top: 0.5rem;
    max-width: 120px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.autocomplete-list {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0.25rem 0 0;
    padding: 0.35rem 0;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-list li {
    padding: 0.55rem 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
}

.autocomplete-list li:hover,
.autocomplete-list li.is-active {
    background: var(--sky-soft);
}

.autocomplete-list li small {
    color: var(--ink-faint);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    cursor: pointer;
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.alert--warning {
    background: var(--terracotta-soft);
    border: 1px solid rgba(196, 92, 38, 0.25);
}

.alert--warning strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--terracotta);
}

.alert p {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
}

.homonym-list {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    font-size: 0.875rem;
}

.form-error {
    margin: 0.75rem 0 0;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius);
    background: #fdecea;
    color: #b42318;
    font-size: 0.875rem;
}

/* Toast */

.toast-container {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    animation: toastIn 0.3s ease both;
}

.toast--error {
    background: #b42318;
}

.toast--success {
    background: var(--sky-deep);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Google button slot */

#google-login-slot {
    min-height: 40px;
    display: flex;
    align-items: center;
}
