form.auth-form {
    width: 500px;
    border: 1px solid #eee;
    padding: 40px;
    display: block;
    margin: 0 auto 20px auto;
}

.btn-actions {
    display: flex;
    justify-content: space-between;
}

.errors-container {
    border-radius: 0;
    width: 500px;
    display: block;
    margin: 0 auto 20px auto;
}

@media (max-width: 576px) {
    .errors-container,
    form.auth-form {
        width: 100%;
    }

    form.auth-form {
        padding: 20px;
    }

    .btn-actions {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .btn-actions .btn:first-child {
        margin-bottom: 20px;
    }
}