/* _content/MAES.Web/Components/Account/ConfirmEmail.razor.rz.scp.css */
.confirmation-container[b-wvkv2wh5tp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    text-align: center;
}

.icon-wrapper[b-wvkv2wh5tp] {
    position: relative;
    display: inline-block;
}

.circle-anim[b-wvkv2wh5tp] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 4px solid #10B981; /* zelena */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: circle-pop-b-wvkv2wh5tp 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes circle-pop-b-wvkv2wh5tp {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.3); /* pop out */
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);   /* scale back to normal */
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;  /* nestaje na kraju */
    }
}
/* _content/MAES.Web/Components/Pages/Home.razor.rz.scp.css */
.hero[b-dmgjy4028y] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75vh;
  width: 100vw;
  overflow: hidden;
}

.iso-view[b-dmgjy4028y] {
  display: flex;
  flex-direction: column;
  margin: -100px 400px -100px -150px;
  gap: 50px;
  transform: rotateX(55deg) rotateZ(-45deg);
}

.iso-neg[b-dmgjy4028y] {
    animation: negY-b-dmgjy4028y ease-in-out infinite alternate;
    animation-duration: 10s;
}

.iso-pos[b-dmgjy4028y] {
    animation: posY-b-dmgjy4028y ease-in-out infinite alternate;
    animation-duration: 10s;
}

/* Mockups box shadow */
.mockup[b-dmgjy4028y] {
    object-fit: contain;
    width: 500px;
    border-radius: 6px;
    box-shadow: -5px 5px 5px rgba(0,0,0,0.128);
}

@keyframes negY-b-dmgjy4028y {
  0% { transform: translateY(0); }
  100% { transform: translateY(-80px); }
}

@keyframes posY-b-dmgjy4028y {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}
