body {
    align-items: center;
}

.content {
    background-color: var(--color_8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content h1 {
    text-align: center;
}


.link1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.link1 > a {
    font-size: 14px;
}

@media only screen and (max-width: 1280px) {
    /* For mobile phones: */
    .content {
        width: 100% !important;
    }
}