body {
    font-family: "Figtree", sans-serif;
}

form .group-input label {
    position: absolute;
    top: -11px;
    background-color: #fff;
    padding: 0 5px;
    left: 12px;
    z-index: 1;
    font-size: 12px;
}

.title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0px;
}

.error {
    color: red;
    font-size: 12px;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: fit-content;
    font-family: monospace;
    font-size: 1rem;
    clip-path: inset(0 3ch 0 0);
    animation: l4 1s steps(4) infinite;
}

.loader:before {
    content: "..."
}

@keyframes l4 {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}

.screen_center {
    position: fixed;
    /* or absolute */
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}