html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.card-glass {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 20px 50px -20px rgba(180, 120, 200, .45);
}

.divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: 1rem;
    white-space: nowrap;
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.text-base-content\/40 {
    color: var(--fallback-bc, oklch(var(--bc) / .4));
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.step-enter {
    animation: popIn 0.4s ease forwards;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    8% {
        transform: scale(1.2);
    }

    16% {
        transform: scale(1);
    }

    24% {
        transform: scale(1.15);
    }

    32% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.emoji-beat {
    display: inline-block;
    animation: heartbeat 2.2s ease infinite;
}

@keyframes wiggle {
    0% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(-8deg);
    }
}

.emoji-wiggle {
    display: inline-block;
    animation: wiggle 1.8s ease-in-out infinite;
}


#noBtn {
    transition: left 0.3s ease, top 0.3s ease;
}