ul.errorlist {
    list-style: none;
    color: red;
    padding-left: 0px;
    text-align: left;
}

ul.errorlist li {
    margin-left: 3px;
}

body {
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.main-container {
    /* display: grid; */
    display: flex;
    width: 100vw;
    height: 100vh;
}

.form-messages-container {
    justify-self: center;
    align-self: center;
    flex-grow: 1;
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-logo-container {
    margin: 30px;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
    padding: 10px;
    width: 300px;
}

.form-container form {
    padding: 0 16px;
    width: 100%;
    height: 100%;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

@media screen and (max-width: 1023px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .image-container {
        display: none;
    }
}
