.page {
    padding-top: 40px;
}

.form-block.button {
    padding-top: 0px;
}

.form-label.link {
    font-size: var(--font-small);
    color: grey;
}

.cover-background {
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-content img {
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
    margin: 0px auto;
    cursor: pointer;
}

.cover-fade-enter-active, .cover-fade-leave-active {
    transition: opacity 0.7s ease-in-out;
}
  
.cover-fade-enter, .cover-fade-leave-to {
    opacity: 0;
}