﻿body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #000fff, #ff007b);
    background-size: cover;
}

.card {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.7);
    border: 2px solid #007bff;
    background-color: #fff;
    border-radius: 10px;
}

.bg-button {
    background: linear-gradient(135deg, #000fff, #ff007b);
}

/*<!-- Ajax Loading Image -->*/
.backdrop {
    z-index: 999999999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    position: relative;
    width: 10vw;
    height: 10vw;
}

.icon-outline,
.icon-fill {
    font-size: 10vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.icon-outline {
    color: transparent;
    -webkit-text-stroke: 2px white; /* sadece dış çizgi */
}

.icon-fill {
    color: white;
    clip-path: inset(0 0 100% 0); /* başta görünmesin */
    animation: fillDown 2s linear infinite;
}

@keyframes fillDown {
    0% {
        clip-path: inset(0 0 100% 0);
    }

    50% {
        clip-path: inset(0 0 0% 0);
    }

    100% {
        clip-path: inset(0 0 100% 0);
    }
}