#header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
h1 {
    /* position: relative; */
    display: block !important;
}
/* h1:before { 
    content: " ";
    position: absolute;
    background-image: url("../assets/layout/icons/logo.svg");
    height: 100px;
    width: 248px;
} */

#content {
    display: flex;
    justify-content: center;
    margin-top: 10%;
    align-items: center;
}

.login-form {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    padding-left: 25%;
    padding-right: 25%;
    width: 75%;
}
@media screen and (max-width: 1000px) {
    .login-form {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .login-form {
        padding-left: 15%;
        padding-right: 15%;
    }
}

.login-form p {
    color: red;
    text-align: center;
    font-size: 12px;
    width: 100%;
}