@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
:root {
    --line-border-fill: #47db34;
    --line-border-empty: #707070;
}
.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
    width: 90%;
    top: 40px;
    margin: auto;
}
.progress-container::before {
    content: "";
    background-color: var(--line-border-empty);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
}
.progress {
    background-color: #47db34;
    border-color: var(--line-border-fill);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    z-index: -1;
    transition: 0.4s ease;
}
.circle {
    background-color: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--line-border-empty);
    transition: 0.4s ease;
}
.circle.active {
    background-color: var(--line-border-fill);
    border-color: var(--line-border-fill);
}
.circle p {
    position: relative;
    top: 50px;
    text-align: center;
}

/* login */

#login {
    height: 520px;
    width: 400px;
    margin: auto;
    background-color: #393939;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 50px 35px;
    margin-top: 100px;
    box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
}

#login * {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

#login h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

#login label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

#login input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}

#login button {
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.arrow-right {
    position: relative;
    right: 35px;
    bottom: 25px;
    transform: rotate(90deg);
}

.arrow-left {
    position: relative;
    right: 30px;
    bottom: 25px;
    transform: rotate(90deg);
}

.arrow-right span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate-right 1.5s infinite;
}

.arrow-left span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate-left 1.5s infinite;
}

.arrow-right span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow-left span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow-right span:nth-child(3) {
    animation-delay: -0.4s;
}

.arrow-left span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate-right {
    0% {
        opacity: 0;
        transform: rotate(-130deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(-130deg) translate(10px, 10px);
    }
}
@keyframes animate-left {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}
