.grolli-large {
    top: 0;
    margin: 5% 5% 5% 5%;
    max-width: 20vmax
}

.login-form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Style the input fields */
.login-form input {
    vertical-align: middle;
    margin: 0 auto 10px 0px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid silver;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Style the submit button */
.login-form input[type="button"] {
    border-radius: 10px;
    color: white;
    font-weight: bold;
    background-image: linear-gradient(90deg,
            #6220BA 0%,
            #83239E 24%,
            #A02586 53%,
            #E12A4F 82%,
            #FFB010 100%);
    border: 2px solid silver;
}

.login-form input[type="button"]:disabled {
    font: bold;
    font-weight: bold;
    border-radius: 10px;
    color: lightgrey;
    background-image: linear-gradient(90deg,
            #654A8B 0%,
            #6D427A 24%,
            #7D4372 53%,
            #A95F6F 82%,
            #AB9363 100%);
}

.login-form input[type="button"]:active {
    transform: scale(0.95);
}