body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-content: center;
}

#background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

form {
    width: 350px;
    background-color: #ffffff;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 50px;
    min-width: 350px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: auto;
    width: 70%;
    min-width: 1100px;
}

#presentation {
    max-width: 500px;
    background-color: rgba(102, 202, 226, 0.8);
    border-radius: 5px;
    padding: 10px;
    height: 50%;
}

body {
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1, p {
    color: #ffffff;
}

input[type=text], input[type=password], input[type=email] {
    width: 100%;
    height: 2em;
    border: 0;
    border-bottom: 1px solid gray;
}

input[type=submit] {
    border: 0;
    color: #ffffff;
    height: 3em;
    background-color: #24a5b6;
}

fieldset {
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

a {
    text-decoration: none;
    color: #007bff;
}

.error {
    color: red;
    max-width: 350px;
    overflow-y: hidden;
}

@media (max-width: 1100px) {
    .container {
        flex-direction: column-reverse;
        align-content: center;
        align-items: baseline;
        min-width: 100vw;
        justify-content: flex-end;
        margin: 0;
    }

    form, #presentation {
        align-self: center
    }

    form {
        width: 250px;
        min-width: 200px;
    }

    #presentation {
        width: 70%;
        margin: 5px;
        padding: 10px;
        height: auto;
    }

    fieldset {
        margin-bottom: 0;
        gap: 15px;
    }
}
