.greeting-container p {
    width: 100%;
    text-align: center;
}

.greeting-container form p {
    display: flex;
    justify-content: center;
}

.greeting-container form p label {
    width: 12em;
    text-align: right;
    padding-right: 2em;
}

.greeting-container form p input:not([type="checkbox"]) {
    width: 12em;
}

form.login-buttons ul.errorlist {
    width: 100%;
}

.flex-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.greeting-container {
    display: flex;
    flex-grow: 0;
    align-items: center;
    flex-direction: column;
}

.login-buttons {
    text-align:center;
}

.login-action {
    text-decoration: underline dashed;
    cursor: pointer;
}

button {
    font-family: inherit;
    font-weight: 500;
}

.login-buttons button {
    font-size: var(--basic-size);
    margin-left: 0.5em;
    margin-right: 0.5em;
    border-radius: 10px;
    border-width: 0px;
    border-color: var(--text); /* #4761f5; */
    background-color: var(--text); /* #4761f5; */
    color: var(--background);
    padding: 0.6em 2em;
}

.profile-form button {
    font-size: var(--basic-size);
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.profile-form p input {
    font-family: 'Exo 2', sans-serif;
}

.field-validation-error {
    margin-left: 0.3em;
}

.greeting-container input {
    border-left-style: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-radius: 3px;
    border-width: 1px;
    text-align: center;
    font-size: var(--basic-size);
}

.login-field {
    border-left-style: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-radius: 3px;
    border-width: 1px;
    text-align: center;
    font-size: var(--basic-size);
}

.login-field::placeholder {
    font-family: 'Exo 2', sans-serif;
}