﻿.kt-login__body {
    display: grid !important;
    grid-template-rows: 1fr auto 1fr;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        'a'
        'b'
        'c';
}

.kt-login__body > .alert,
.kt-login__form {
    width: 100%;
    max-width: 450px;
}

.kt-login__body > .alert {
    align-self: start;
    justify-self: center;
    grid-area: a;
}

.kt-login__form {
    align-self: center;
    justify-self: center;
    grid-area: b;
}

.kt-login__actions,
form {
    margin-bottom: 0 !important;
}
