#refresh {
    width: 40px;
    height: 40px;
    background-image: var(--refreshImage);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: 50%;
    margin-top: 0px;
    margin-left:1em;
    padding: 0px;
    flex:none;
    vertical-align: bottom;
}

.passwordForm {
    width: clamp(520px, 750px, 37vw);
}

/***********************************************************************/
/************************** Success Page *******************************/
/***********************************************************************/

#svgBackground {
    animation: shiftRight 1s ease-out;
}

#svgHuman {
    animation: shiftUp 1s ease-out;
}

@keyframes shiftUp {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shiftRight {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0px);
    }
}