﻿
.loadMiddel {
    transform: scale(4);
}

    .loadMiddel svg {
        width: 3.25em;
        transform-origin: center;
        animation: rotate4 2s linear infinite;
    }

    .loadMiddel circle {
        fill: none;
        stroke: hsl(214, 97%, 59%);
        stroke-width: 2;
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke-linecap: round;
        animation: dash4 1.5s ease-in-out infinite;
    }

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

.pin-input {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.pin-box {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #fff;
    background: transparent;
    margin-right: 5px;
    border-radius: 10px;
}
