﻿@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

/* Sayfanın tamamını kapsayan arka plan */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c2dfff;
    overflow: hidden;
}

/* Daire animasyonlu arka plan */
.ring {
    position: absolute;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.ring-icon {
    position: absolute;
    inset: 0;
    transition: 0.5s;
}

    .ring-icon:nth-child(1) {
        background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        animation: animate 6s linear infinite;
    }

    .ring-icon:nth-child(2) {
        background-color: #0093e9;
        background-image: linear-gradient(160deg, #0093e9 0%, #80d0c7 100%);
        border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
        animation: animate 4s linear infinite;
    }

    .ring-icon:nth-child(3) {
        background-color: #4158d0;
        background-image: linear-gradient( 43deg, #4158d0 0%, #c850c0 46%, #ffcc70 100% );
        border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
        animation: animate2 10s linear infinite;
    }

    .ring:hover i {
        filter: drop-shadow(0 0 30px var(--clr));
    }

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate2 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Giriş kutusu */
.login {
    position: absolute;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

    .login h2 {
        font-size: 2em;
        color: #fff;
    }

    /* Tüm input ve butonları duyarlı hale getirme */
    .login .inputBx {
        width: 100%;
        max-width: 100%;
    }

        /* Input kutularının tam genişlikte olmasını sağlama */
        .login .inputBx input {
            position: relative;
            width: 100%;
            max-width: 100%;
            padding: 12px 15px;
            background: transparent;
            border: 2px solid #fff;
            border-radius: 40px;
            font-size: 1.1em;
            color: #fff;
            outline: none;
        }

            .login .inputBx input::placeholder {
                color: rgba(255, 255, 255, 0.75);
            }

            /* Giriş butonu */
            .login .inputBx input[type="submit"] {
                background: linear-gradient(45deg, #ff357a, #fff172);
                border: none;
                cursor: pointer;
            }

    /* Şifre giriş kutusu ve gösterme butonu */
    .login .input-group {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

        .login .input-group input {
            flex: 1;
            width: 100%;
            max-width: 100%;
        }

        .login .input-group button {
            background: none;
            border: none;
            cursor: pointer;
            color: white;
        }

    /* Linklerin hizalanması */
    .login .links {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

        .login .links a {
            color: #fff;
            text-decoration: none;
        }
/* Responsive Mobil Uyumluluk */
@media (max-width: 768px) {
    .ring {
        width: 350px;
        height: 350px;
    }

    .login {
        width: 90%;
        max-width: 300px;
    }

        .login h2 {
            font-size: 1.4em;
        }

        .login .inputBx input {
            font-size: 1em;
            padding: 10px 12px;
        }

        .login .input-group input {
            font-size: 1em;
            padding: 10px 12px;
        }

        .login .input-group button {
            font-size: 0.9em;
            padding: 10px;
        }
}

@media (max-width: 480px) {
    .ring {
        width: 300px;
        height: 300px;
    }

    .login {
        width: 95%;
        max-width: 280px;
    }

        .login h2 {
            font-size: 1.2em;
        }

        .login .inputBx input {
            font-size: 0.9em;
            padding: 8px 10px;
        }

        .login .input-group input {
            font-size: 0.9em;
            padding: 8px 10px;
        }

        .login .input-group button {
            font-size: 0.8em;
            padding: 8px;
        }
}

/* Giriş formunun tam ekran ortalanması */
.account-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Arka plan noktaları ve tam ekran kaplama */
.bgdot {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #221f2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

    .bgdot .dotWrapper {
        position: absolute;
    }

    .bgdot .dotWrapper-1 {
        top: 92%;
        left: 9%;
        -webkit-animation: flying 47s ease-in-out -8.8s infinite alternate;
        animation: flying 47s ease-in-out -8.8s infinite alternate;
    }

    .bgdot .dotWrapper-2 {
        top: 65%;
        left: 50%;
        -webkit-animation: flying 42s ease-in-out -0.7s infinite alternate;
        animation: flying 42s ease-in-out -0.7s infinite alternate;
    }

    .bgdot .dotWrapper-3 {
        top: 49%;
        left: 73%;
        -webkit-animation: flying 42s ease-in-out -5.4s infinite alternate;
        animation: flying 42s ease-in-out -5.4s infinite alternate;
    }

    .bgdot .dotWrapper-4 {
        top: 21%;
        left: 90%;
        -webkit-animation: flying 32s ease-in-out -5.6s infinite alternate;
        animation: flying 32s ease-in-out -5.6s infinite alternate;
    }

    .bgdot .dotWrapper-5 {
        top: 37%;
        left: 47%;
        -webkit-animation: flying 39s ease-in-out -1.8s infinite alternate;
        animation: flying 39s ease-in-out -1.8s infinite alternate;
    }

    .bgdot .dotWrapper-6 {
        top: 40%;
        left: 41%;
        -webkit-animation: flying 26s ease-in-out -3.2s infinite alternate;
        animation: flying 26s ease-in-out -3.2s infinite alternate;
    }

    .bgdot .dotWrapper-7 {
        top: 71%;
        left: 58%;
        -webkit-animation: flying 34s ease-in-out -9.1s infinite alternate;
        animation: flying 34s ease-in-out -9.1s infinite alternate;
    }

    .bgdot .dotWrapper-8 {
        top: 54%;
        left: 47%;
        -webkit-animation: flying 40s ease-in-out -9.5s infinite alternate;
        animation: flying 40s ease-in-out -9.5s infinite alternate;
    }

    .bgdot .dotWrapper-9 {
        top: 11%;
        left: 1%;
        -webkit-animation: flying 45s ease-in-out -4.6s infinite alternate;
        animation: flying 45s ease-in-out -4.6s infinite alternate;
    }

    .bgdot .dotWrapper-10 {
        top: 72%;
        left: 42%;
        -webkit-animation: flying 61s ease-in-out -3.7s infinite alternate;
        animation: flying 61s ease-in-out -3.7s infinite alternate;
    }

    .bgdot .dotWrapper-11 {
        top: 88%;
        left: 54%;
        -webkit-animation: flying 59s ease-in-out -0.4s infinite alternate;
        animation: flying 59s ease-in-out -0.4s infinite alternate;
    }

    .bgdot .dotWrapper-12 {
        top: 74%;
        left: 19%;
        -webkit-animation: flying 58s ease-in-out -9.4s infinite alternate;
        animation: flying 58s ease-in-out -9.4s infinite alternate;
    }

    .bgdot .dotWrapper-13 {
        top: 97%;
        left: 64%;
        -webkit-animation: flying 27s ease-in-out -4.6s infinite alternate;
        animation: flying 27s ease-in-out -4.6s infinite alternate;
    }

    .bgdot .dotWrapper-14 {
        top: 31%;
        left: 73%;
        -webkit-animation: flying 48s ease-in-out -3s infinite alternate;
        animation: flying 48s ease-in-out -3s infinite alternate;
    }

    .bgdot .dotWrapper-15 {
        top: 2%;
        left: 83%;
        -webkit-animation: flying 63s ease-in-out -5.5s infinite alternate;
        animation: flying 63s ease-in-out -5.5s infinite alternate;
    }

    .bgdot .dotWrapper-16 {
        top: 68%;
        left: 7%;
        -webkit-animation: flying 57s ease-in-out -7.6s infinite alternate;
        animation: flying 57s ease-in-out -7.6s infinite alternate;
    }

    .bgdot .dotWrapper-17 {
        top: 34%;
        left: 20%;
        -webkit-animation: flying 62s ease-in-out -4.6s infinite alternate;
        animation: flying 62s ease-in-out -4.6s infinite alternate;
    }

    .bgdot .dotWrapper-18 {
        top: 98%;
        left: 8%;
        -webkit-animation: flying 44s ease-in-out -3.1s infinite alternate;
        animation: flying 44s ease-in-out -3.1s infinite alternate;
    }

    .bgdot .dotWrapper-19 {
        top: 90%;
        left: 67%;
        -webkit-animation: flying 21s ease-in-out -9.9s infinite alternate;
        animation: flying 21s ease-in-out -9.9s infinite alternate;
    }

    .bgdot .dotWrapper-20 {
        top: 13%;
        left: 29%;
        -webkit-animation: flying 58s ease-in-out -6s infinite alternate;
        animation: flying 58s ease-in-out -6s infinite alternate;
    }

    .bgdot .dotWrapper-21 {
        top: 20%;
        left: 100%;
        -webkit-animation: flying 27s ease-in-out -6.7s infinite alternate;
        animation: flying 27s ease-in-out -6.7s infinite alternate;
    }

    .bgdot .dotWrapper-22 {
        top: 53%;
        left: 80%;
        -webkit-animation: flying 65s ease-in-out -1.9s infinite alternate;
        animation: flying 65s ease-in-out -1.9s infinite alternate;
    }

    .bgdot .dotWrapper-23 {
        top: 32%;
        left: 95%;
        -webkit-animation: flying 45s ease-in-out -2.6s infinite alternate;
        animation: flying 45s ease-in-out -2.6s infinite alternate;
    }

    .bgdot .dotWrapper-24 {
        top: 81%;
        left: 38%;
        -webkit-animation: flying 28s ease-in-out -9.8s infinite alternate;
        animation: flying 28s ease-in-out -9.8s infinite alternate;
    }

    .bgdot .dotWrapper-25 {
        top: 69%;
        left: 86%;
        -webkit-animation: flying 33s ease-in-out -6.8s infinite alternate;
        animation: flying 33s ease-in-out -6.8s infinite alternate;
    }

    .bgdot .dotWrapper-26 {
        top: 80%;
        left: 57%;
        -webkit-animation: flying 69s ease-in-out -2.3s infinite alternate;
        animation: flying 69s ease-in-out -2.3s infinite alternate;
    }

    .bgdot .dotWrapper-27 {
        top: 23%;
        left: 19%;
        -webkit-animation: flying 61s ease-in-out -8.8s infinite alternate;
        animation: flying 61s ease-in-out -8.8s infinite alternate;
    }

    .bgdot .dotWrapper-28 {
        top: 53%;
        left: 42%;
        -webkit-animation: flying 27s ease-in-out -3.8s infinite alternate;
        animation: flying 27s ease-in-out -3.8s infinite alternate;
    }

    .bgdot .dotWrapper-29 {
        top: 80%;
        left: 56%;
        -webkit-animation: flying 27s ease-in-out -0.9s infinite alternate;
        animation: flying 27s ease-in-out -0.9s infinite alternate;
    }

    .bgdot .dotWrapper-30 {
        top: 26%;
        left: 65%;
        -webkit-animation: flying 41s ease-in-out -3.5s infinite alternate;
        animation: flying 41s ease-in-out -3.5s infinite alternate;
    }

    .bgdot .dotWrapper-31 {
        top: 65%;
        left: 88%;
        -webkit-animation: flying 67s ease-in-out -1.3s infinite alternate;
        animation: flying 67s ease-in-out -1.3s infinite alternate;
    }

    .bgdot .dotWrapper-32 {
        top: 79%;
        left: 67%;
        -webkit-animation: flying 55s ease-in-out -5s infinite alternate;
        animation: flying 55s ease-in-out -5s infinite alternate;
    }

    .bgdot .dotWrapper-33 {
        top: 6%;
        left: 98%;
        -webkit-animation: flying 22s ease-in-out -0.9s infinite alternate;
        animation: flying 22s ease-in-out -0.9s infinite alternate;
    }

    .bgdot .dotWrapper-34 {
        top: 88%;
        left: 60%;
        -webkit-animation: flying 48s ease-in-out -6.3s infinite alternate;
        animation: flying 48s ease-in-out -6.3s infinite alternate;
    }

    .bgdot .dotWrapper-35 {
        top: 30%;
        left: 70%;
        -webkit-animation: flying 33s ease-in-out -5.5s infinite alternate;
        animation: flying 33s ease-in-out -5.5s infinite alternate;
    }

    .bgdot .dotWrapper-36 {
        top: 64%;
        left: 6%;
        -webkit-animation: flying 53s ease-in-out -5s infinite alternate;
        animation: flying 53s ease-in-out -5s infinite alternate;
    }

    .bgdot .dotWrapper-37 {
        top: 6%;
        left: 10%;
        -webkit-animation: flying 39s ease-in-out -3.3s infinite alternate;
        animation: flying 39s ease-in-out -3.3s infinite alternate;
    }

    .bgdot .dotWrapper-38 {
        top: 65%;
        left: 45%;
        -webkit-animation: flying 32s ease-in-out -5.7s infinite alternate;
        animation: flying 32s ease-in-out -5.7s infinite alternate;
    }

    .bgdot .dotWrapper-39 {
        top: 18%;
        left: 81%;
        -webkit-animation: flying 60s ease-in-out -6.9s infinite alternate;
        animation: flying 60s ease-in-out -6.9s infinite alternate;
    }

    .bgdot .dotWrapper-40 {
        top: 59%;
        left: 71%;
        -webkit-animation: flying 51s ease-in-out -2.9s infinite alternate;
        animation: flying 51s ease-in-out -2.9s infinite alternate;
    }

    .bgdot .dotWrapper-41 {
        top: 89%;
        left: 37%;
        -webkit-animation: flying 59s ease-in-out -6.1s infinite alternate;
        animation: flying 59s ease-in-out -6.1s infinite alternate;
    }

    .bgdot .dotWrapper-42 {
        top: 31%;
        left: 7%;
        -webkit-animation: flying 65s ease-in-out -2.4s infinite alternate;
        animation: flying 65s ease-in-out -2.4s infinite alternate;
    }

    .bgdot .dotWrapper-43 {
        top: 95%;
        left: 89%;
        -webkit-animation: flying 67s ease-in-out -2.8s infinite alternate;
        animation: flying 67s ease-in-out -2.8s infinite alternate;
    }

    .bgdot .dotWrapper-44 {
        top: 33%;
        left: 65%;
        -webkit-animation: flying 65s ease-in-out -8.6s infinite alternate;
        animation: flying 65s ease-in-out -8.6s infinite alternate;
    }

    .bgdot .dotWrapper-45 {
        top: 90%;
        left: 40%;
        -webkit-animation: flying 39s ease-in-out -5.4s infinite alternate;
        animation: flying 39s ease-in-out -5.4s infinite alternate;
    }

    .bgdot .dotWrapper-46 {
        top: 34%;
        left: 70%;
        -webkit-animation: flying 55s ease-in-out -0.8s infinite alternate;
        animation: flying 55s ease-in-out -0.8s infinite alternate;
    }

    .bgdot .dotWrapper-47 {
        top: 51%;
        left: 73%;
        -webkit-animation: flying 67s ease-in-out -10s infinite alternate;
        animation: flying 67s ease-in-out -10s infinite alternate;
    }

    .bgdot .dotWrapper-48 {
        top: 38%;
        left: 22%;
        -webkit-animation: flying 39s ease-in-out -3.8s infinite alternate;
        animation: flying 39s ease-in-out -3.8s infinite alternate;
    }

    .bgdot .dotWrapper-49 {
        top: 68%;
        left: 85%;
        -webkit-animation: flying 61s ease-in-out -7.1s infinite alternate;
        animation: flying 61s ease-in-out -7.1s infinite alternate;
    }

    .bgdot .dotWrapper-50 {
        top: 3%;
        left: 54%;
        -webkit-animation: flying 47s ease-in-out -7.5s infinite alternate;
        animation: flying 47s ease-in-out -7.5s infinite alternate;
    }

    .bgdot .dotWrapper-51 {
        top: 91%;
        left: 28%;
        -webkit-animation: flying 62s ease-in-out -8.5s infinite alternate;
        animation: flying 62s ease-in-out -8.5s infinite alternate;
    }

    .bgdot .dotWrapper-52 {
        top: 69%;
        left: 51%;
        -webkit-animation: flying 38s ease-in-out -2.6s infinite alternate;
        animation: flying 38s ease-in-out -2.6s infinite alternate;
    }

    .bgdot .dotWrapper-53 {
        top: 96%;
        left: 84%;
        -webkit-animation: flying 61s ease-in-out -3.7s infinite alternate;
        animation: flying 61s ease-in-out -3.7s infinite alternate;
    }

    .bgdot .dotWrapper-54 {
        top: 18%;
        left: 32%;
        -webkit-animation: flying 38s ease-in-out -3.8s infinite alternate;
        animation: flying 38s ease-in-out -3.8s infinite alternate;
    }

    .bgdot .dotWrapper-55 {
        top: 90%;
        left: 72%;
        -webkit-animation: flying 55s ease-in-out -5.1s infinite alternate;
        animation: flying 55s ease-in-out -5.1s infinite alternate;
    }

    .bgdot .dotWrapper-56 {
        top: 85%;
        left: 84%;
        -webkit-animation: flying 48s ease-in-out -1.5s infinite alternate;
        animation: flying 48s ease-in-out -1.5s infinite alternate;
    }

    .bgdot .dotWrapper-57 {
        top: 80%;
        left: 74%;
        -webkit-animation: flying 33s ease-in-out -3.9s infinite alternate;
        animation: flying 33s ease-in-out -3.9s infinite alternate;
    }

    .bgdot .dotWrapper-58 {
        top: 29%;
        left: 10%;
        -webkit-animation: flying 29s ease-in-out -9.2s infinite alternate;
        animation: flying 29s ease-in-out -9.2s infinite alternate;
    }

    .bgdot .dotWrapper-59 {
        top: 73%;
        left: 71%;
        -webkit-animation: flying 31s ease-in-out -9.2s infinite alternate;
        animation: flying 31s ease-in-out -9.2s infinite alternate;
    }

    .bgdot .dotWrapper-60 {
        top: 36%;
        left: 54%;
        -webkit-animation: flying 47s ease-in-out -7.9s infinite alternate;
        animation: flying 47s ease-in-out -7.9s infinite alternate;
    }

    .bgdot .dotWrapper-61 {
        top: 41%;
        left: 84%;
        -webkit-animation: flying 35s ease-in-out -1.1s infinite alternate;
        animation: flying 35s ease-in-out -1.1s infinite alternate;
    }

    .bgdot .dotWrapper-62 {
        top: 30%;
        left: 55%;
        -webkit-animation: flying 24s ease-in-out -6.2s infinite alternate;
        animation: flying 24s ease-in-out -6.2s infinite alternate;
    }

    .bgdot .dotWrapper-63 {
        top: 7%;
        left: 80%;
        -webkit-animation: flying 38s ease-in-out -4.3s infinite alternate;
        animation: flying 38s ease-in-out -4.3s infinite alternate;
    }

    .bgdot .dotWrapper-64 {
        top: 68%;
        left: 18%;
        -webkit-animation: flying 63s ease-in-out -1.2s infinite alternate;
        animation: flying 63s ease-in-out -1.2s infinite alternate;
    }

    .bgdot .dotWrapper-65 {
        top: 33%;
        left: 24%;
        -webkit-animation: flying 36s ease-in-out -3.1s infinite alternate;
        animation: flying 36s ease-in-out -3.1s infinite alternate;
    }

    .bgdot .dotWrapper-66 {
        top: 64%;
        left: 52%;
        -webkit-animation: flying 29s ease-in-out -7.8s infinite alternate;
        animation: flying 29s ease-in-out -7.8s infinite alternate;
    }

    .bgdot .dotWrapper-67 {
        top: 55%;
        left: 59%;
        -webkit-animation: flying 50s ease-in-out -5.3s infinite alternate;
        animation: flying 50s ease-in-out -5.3s infinite alternate;
    }

    .bgdot .dotWrapper-68 {
        top: 31%;
        left: 86%;
        -webkit-animation: flying 59s ease-in-out -6.5s infinite alternate;
        animation: flying 59s ease-in-out -6.5s infinite alternate;
    }

    .bgdot .dotWrapper-69 {
        top: 45%;
        left: 11%;
        -webkit-animation: flying 57s ease-in-out -7.8s infinite alternate;
        animation: flying 57s ease-in-out -7.8s infinite alternate;
    }

    .bgdot .dotWrapper-70 {
        top: 47%;
        left: 82%;
        -webkit-animation: flying 37s ease-in-out -2s infinite alternate;
        animation: flying 37s ease-in-out -2s infinite alternate;
    }

    .bgdot .dotWrapper-71 {
        top: 7%;
        left: 22%;
        -webkit-animation: flying 56s ease-in-out -1.3s infinite alternate;
        animation: flying 56s ease-in-out -1.3s infinite alternate;
    }

    .bgdot .dotWrapper-72 {
        top: 40%;
        left: 39%;
        -webkit-animation: flying 54s ease-in-out -2.3s infinite alternate;
        animation: flying 54s ease-in-out -2.3s infinite alternate;
    }

    .bgdot .dotWrapper-73 {
        top: 83%;
        left: 48%;
        -webkit-animation: flying 49s ease-in-out -2.4s infinite alternate;
        animation: flying 49s ease-in-out -2.4s infinite alternate;
    }

    .bgdot .dotWrapper-74 {
        top: 30%;
        left: 61%;
        -webkit-animation: flying 24s ease-in-out -5.5s infinite alternate;
        animation: flying 24s ease-in-out -5.5s infinite alternate;
    }

    .bgdot .dotWrapper-75 {
        top: 18%;
        left: 49%;
        -webkit-animation: flying 60s ease-in-out -1s infinite alternate;
        animation: flying 60s ease-in-out -1s infinite alternate;
    }

    .bgdot .dot {
        width: 4px;
        height: 4px;
        background: #fea039;
        border-radius: 50%;
    }

    .bgdot .dot-1 {
        transform-origin: -10px -14px;
        -webkit-animation: rotating 11s ease-in-out -7s infinite;
        animation: rotating 11s ease-in-out -7s infinite;
    }

    .bgdot .dot-2 {
        transform-origin: 5px -7px;
        -webkit-animation: rotating 30s ease-in-out -8.8s infinite;
        animation: rotating 30s ease-in-out -8.8s infinite;
    }

    .bgdot .dot-3 {
        transform-origin: 7px 3px;
        -webkit-animation: rotating 15s ease-in-out -5.7s infinite;
        animation: rotating 15s ease-in-out -5.7s infinite;
    }

    .bgdot .dot-4 {
        transform-origin: 13px 7px;
        -webkit-animation: rotating 29s ease-in-out -6.4s infinite;
        animation: rotating 29s ease-in-out -6.4s infinite;
    }

    .bgdot .dot-5 {
        transform-origin: -14px -7px;
        -webkit-animation: rotating 17s ease-in-out -5.6s infinite;
        animation: rotating 17s ease-in-out -5.6s infinite;
    }

    .bgdot .dot-6 {
        transform-origin: 11px 2px;
        -webkit-animation: rotating 12s ease-in-out -3.6s infinite;
        animation: rotating 12s ease-in-out -3.6s infinite;
    }

    .bgdot .dot-7 {
        transform-origin: 2px -4px;
        -webkit-animation: rotating 25s ease-in-out -2.8s infinite;
        animation: rotating 25s ease-in-out -2.8s infinite;
    }

    .bgdot .dot-8 {
        transform-origin: -11px -2px;
        -webkit-animation: rotating 14s ease-in-out -8.7s infinite;
        animation: rotating 14s ease-in-out -8.7s infinite;
    }

    .bgdot .dot-9 {
        transform-origin: -4px 12px;
        -webkit-animation: rotating 23s ease-in-out -0.9s infinite;
        animation: rotating 23s ease-in-out -0.9s infinite;
    }

    .bgdot .dot-10 {
        transform-origin: -14px -2px;
        -webkit-animation: rotating 25s ease-in-out -7s infinite;
        animation: rotating 25s ease-in-out -7s infinite;
    }

    .bgdot .dot-11 {
        transform-origin: 8px -11px;
        -webkit-animation: rotating 16s ease-in-out -4.5s infinite;
        animation: rotating 16s ease-in-out -4.5s infinite;
    }

    .bgdot .dot-12 {
        transform-origin: 14px -10px;
        -webkit-animation: rotating 29s ease-in-out -7.6s infinite;
        animation: rotating 29s ease-in-out -7.6s infinite;
    }

    .bgdot .dot-13 {
        transform-origin: -1px -2px;
        -webkit-animation: rotating 29s ease-in-out -6.2s infinite;
        animation: rotating 29s ease-in-out -6.2s infinite;
    }

    .bgdot .dot-14 {
        transform-origin: -3px 7px;
        -webkit-animation: rotating 12s ease-in-out -8.8s infinite;
        animation: rotating 12s ease-in-out -8.8s infinite;
    }

    .bgdot .dot-15 {
        transform-origin: -11px 2px;
        -webkit-animation: rotating 15s ease-in-out -2.8s infinite;
        animation: rotating 15s ease-in-out -2.8s infinite;
    }

    .bgdot .dot-16 {
        transform-origin: -12px 7px;
        -webkit-animation: rotating 24s ease-in-out -3.3s infinite;
        animation: rotating 24s ease-in-out -3.3s infinite;
    }

    .bgdot .dot-17 {
        transform-origin: 2px -9px;
        -webkit-animation: rotating 17s ease-in-out -5s infinite;
        animation: rotating 17s ease-in-out -5s infinite;
    }

    .bgdot .dot-18 {
        transform-origin: -2px 14px;
        -webkit-animation: rotating 24s ease-in-out -0.6s infinite;
        animation: rotating 24s ease-in-out -0.6s infinite;
    }

    .bgdot .dot-19 {
        transform-origin: 8px -3px;
        -webkit-animation: rotating 24s ease-in-out -3s infinite;
        animation: rotating 24s ease-in-out -3s infinite;
    }

    .bgdot .dot-20 {
        transform-origin: 3px -3px;
        -webkit-animation: rotating 14s ease-in-out -4.6s infinite;
        animation: rotating 14s ease-in-out -4.6s infinite;
    }

    .bgdot .dot-21 {
        transform-origin: -5px -5px;
        -webkit-animation: rotating 23s ease-in-out -4.5s infinite;
        animation: rotating 23s ease-in-out -4.5s infinite;
    }

    .bgdot .dot-22 {
        transform-origin: -2px -7px;
        -webkit-animation: rotating 25s ease-in-out -7.8s infinite;
        animation: rotating 25s ease-in-out -7.8s infinite;
    }

    .bgdot .dot-23 {
        transform-origin: -5px -11px;
        -webkit-animation: rotating 15s ease-in-out -3.9s infinite;
        animation: rotating 15s ease-in-out -3.9s infinite;
    }

    .bgdot .dot-24 {
        transform-origin: -12px -6px;
        -webkit-animation: rotating 11s ease-in-out -1s infinite;
        animation: rotating 11s ease-in-out -1s infinite;
    }

    .bgdot .dot-25 {
        transform-origin: 9px 12px;
        -webkit-animation: rotating 21s ease-in-out -6.6s infinite;
        animation: rotating 21s ease-in-out -6.6s infinite;
    }

    .bgdot .dot-26 {
        transform-origin: -8px -3px;
        -webkit-animation: rotating 30s ease-in-out -5.7s infinite;
        animation: rotating 30s ease-in-out -5.7s infinite;
    }

    .bgdot .dot-27 {
        transform-origin: 7px 11px;
        -webkit-animation: rotating 22s ease-in-out -2.3s infinite;
        animation: rotating 22s ease-in-out -2.3s infinite;
    }

    .bgdot .dot-28 {
        transform-origin: 9px 13px;
        -webkit-animation: rotating 17s ease-in-out -1.9s infinite;
        animation: rotating 17s ease-in-out -1.9s infinite;
    }

    .bgdot .dot-29 {
        transform-origin: -8px -7px;
        -webkit-animation: rotating 26s ease-in-out -9.3s infinite;
        animation: rotating 26s ease-in-out -9.3s infinite;
    }

    .bgdot .dot-30 {
        transform-origin: -13px 5px;
        -webkit-animation: rotating 11s ease-in-out -4.2s infinite;
        animation: rotating 11s ease-in-out -4.2s infinite;
    }

    .bgdot .dot-31 {
        transform-origin: 12px 2px;
        -webkit-animation: rotating 26s ease-in-out -0.5s infinite;
        animation: rotating 26s ease-in-out -0.5s infinite;
    }

    .bgdot .dot-32 {
        transform-origin: -9px -1px;
        -webkit-animation: rotating 18s ease-in-out -1.1s infinite;
        animation: rotating 18s ease-in-out -1.1s infinite;
    }

    .bgdot .dot-33 {
        transform-origin: 1px 8px;
        -webkit-animation: rotating 30s ease-in-out -7.2s infinite;
        animation: rotating 30s ease-in-out -7.2s infinite;
    }

    .bgdot .dot-34 {
        transform-origin: 14px 15px;
        -webkit-animation: rotating 26s ease-in-out -0.7s infinite;
        animation: rotating 26s ease-in-out -0.7s infinite;
    }

    .bgdot .dot-35 {
        transform-origin: -6px 14px;
        -webkit-animation: rotating 26s ease-in-out -0.9s infinite;
        animation: rotating 26s ease-in-out -0.9s infinite;
    }

    .bgdot .dot-36 {
        transform-origin: -3px -13px;
        -webkit-animation: rotating 12s ease-in-out -5.8s infinite;
        animation: rotating 12s ease-in-out -5.8s infinite;
    }

    .bgdot .dot-37 {
        transform-origin: -8px -6px;
        -webkit-animation: rotating 19s ease-in-out -1.2s infinite;
        animation: rotating 19s ease-in-out -1.2s infinite;
    }

    .bgdot .dot-38 {
        transform-origin: 15px 3px;
        -webkit-animation: rotating 23s ease-in-out -1.9s infinite;
        animation: rotating 23s ease-in-out -1.9s infinite;
    }

    .bgdot .dot-39 {
        transform-origin: 12px 7px;
        -webkit-animation: rotating 18s ease-in-out -4.6s infinite;
        animation: rotating 18s ease-in-out -4.6s infinite;
    }

    .bgdot .dot-40 {
        transform-origin: 8px -11px;
        -webkit-animation: rotating 25s ease-in-out -9.3s infinite;
        animation: rotating 25s ease-in-out -9.3s infinite;
    }

    .bgdot .dot-41 {
        transform-origin: -14px 7px;
        -webkit-animation: rotating 14s ease-in-out -7.6s infinite;
        animation: rotating 14s ease-in-out -7.6s infinite;
    }

    .bgdot .dot-42 {
        transform-origin: -1px 0px;
        -webkit-animation: rotating 24s ease-in-out -9.6s infinite;
        animation: rotating 24s ease-in-out -9.6s infinite;
    }

    .bgdot .dot-43 {
        transform-origin: -3px -13px;
        -webkit-animation: rotating 20s ease-in-out -6.7s infinite;
        animation: rotating 20s ease-in-out -6.7s infinite;
    }

    .bgdot .dot-44 {
        transform-origin: 14px -5px;
        -webkit-animation: rotating 13s ease-in-out -6s infinite;
        animation: rotating 13s ease-in-out -6s infinite;
    }

    .bgdot .dot-45 {
        transform-origin: -13px 1px;
        -webkit-animation: rotating 16s ease-in-out -1.8s infinite;
        animation: rotating 16s ease-in-out -1.8s infinite;
    }

    .bgdot .dot-46 {
        transform-origin: -1px -1px;
        -webkit-animation: rotating 13s ease-in-out -7.1s infinite;
        animation: rotating 13s ease-in-out -7.1s infinite;
    }

    .bgdot .dot-47 {
        transform-origin: -10px 14px;
        -webkit-animation: rotating 22s ease-in-out -5.6s infinite;
        animation: rotating 22s ease-in-out -5.6s infinite;
    }

    .bgdot .dot-48 {
        transform-origin: -5px -12px;
        -webkit-animation: rotating 28s ease-in-out -8.8s infinite;
        animation: rotating 28s ease-in-out -8.8s infinite;
    }

    .bgdot .dot-49 {
        transform-origin: -13px 6px;
        -webkit-animation: rotating 27s ease-in-out -4.6s infinite;
        animation: rotating 27s ease-in-out -4.6s infinite;
    }

    .bgdot .dot-50 {
        transform-origin: -7px 5px;
        -webkit-animation: rotating 18s ease-in-out -0.9s infinite;
        animation: rotating 18s ease-in-out -0.9s infinite;
    }

@-webkit-keyframes rotating {
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }

    25%, 75% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }

    25%, 75% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: rotate(360deg);
    }
}

@-webkit-keyframes flying {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(20px, 50px);
    }

    20% {
        transform: translate(-30px, 10px);
    }

    30% {
        transform: translate(10px, 60px);
    }

    40% {
        transform: translate(50px, 0px);
    }

    50% {
        transform: translate(-10px, -40px);
    }

    60% {
        transform: translate(-40px, 20px);
    }

    70% {
        transform: translate(30px, -30px);
    }

    80% {
        transform: translate(0px, -60px);
    }

    90% {
        transform: translate(40px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes flying {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(20px, 50px);
    }

    20% {
        transform: translate(-30px, 10px);
    }

    30% {
        transform: translate(10px, 60px);
    }

    40% {
        transform: translate(50px, 0px);
    }

    50% {
        transform: translate(-10px, -40px);
    }

    60% {
        transform: translate(-40px, 20px);
    }

    70% {
        transform: translate(30px, -30px);
    }

    80% {
        transform: translate(0px, -60px);
    }

    90% {
        transform: translate(40px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}z