html,
body {
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    overflow-x: hidden;
}

body {
    background-image: url('../img/dot-grid-gray.png');
    background-repeat: repeat;
}

.toCenter,
.toCenter>div {
    height: 100%;
}

.toCenter .left,
.toCenter .right {
    height: 100%;
    width: 50%;
}

.toCenter .left {
    position: relative;
}

.toCenter .left::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 263px;
    display: block;
    background-image: url('../img/SuperGraphic_Primary.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.toCenter .left>.container {
    z-index: 2;
}

.toCenter .right {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/team-work.jpeg');
    background-size: cover;
    background-position: 60% center;
    position: relative;
}

.toCenter .right:after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 263px);
    display: block;
    background-image: url('../img/triangle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    opacity: .8;
}

.toCenter .right .claim {
    color: var(--white);
    font-weight: 700;
    font-size: xx-large;
    position: absolute;
    z-index: 2;
    top: 2.5em;
    left: 2.5em;
    width: 320px;
}

#headerSection {
    margin-left: 0px !important;
    margin-right: 15px !important;
    bottom: -16px !important;
}

.block-login {
    padding: 2em;
    width: 480px;
    height: auto;
    margin: auto;
    display: block;
}

.block-login .logo {
    width: 240px;
    margin: 0 auto;
    display: flex;
    padding: 3em 0;
}

h1 {
    color: var(--black);
    font-size: 2.25rem;
    font-weight: 300;
    text-align: center;
}

h1 strong {
    font-weight: 700;
}

h1::after {
    content: "";
    width: 90px;
    height: 2px;
    background-color: var(--red);
    display: block;
    margin: .48em auto;
}

#messageSection {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #FFF;
}

#messageSection .alert {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

#messageSection .content {
    font-size: 14px;
    text-align: center;
}

#messageSection .headerMessage > div{
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/*Responsive*/
@media (max-width: 319px) {

    /* General */
    h1 {
        font-size: 1.5rem;
    }

    h1 span {
        font-size: .8rem;
    }

    h1::after {
        margin: 1em auto;
    }

    body::after {
        height: 7px;
    }

    .toCenter .left::after {
        width: 100%;
        height: 100px;
    }

    .toCenter .right{
        display: none;
    }

    .toCenter .left {
        width: 100%;
    }

    /* Blocks */

    div.block-login {
        width: 100%;
        max-width: 100%;
        padding: 1em;
    }

    div.block-login .logo {
        width: 120px;
        padding: 2em 0;
    }

    div.block-login h1.text-center {
        font-size: medium;
    }

    div.block-login .form-group {
        margin-bottom: .48rem;
    }

    div.block-login .text-center {
        font-size: small;
    }

    section.toCenter {
        align-items: center !important;
    }

    .block-login .card i {
        font-size: 3rem;
    }

}

@media (min-width: 320px) and (max-width: 575.98px) {

    /* General */
    h1 {
        font-size: 1.75rem;
    }

    h1 span {
        font-size: 1.1rem;
    }

    h1::after {
        margin: 1em auto;
    }

    body::after {
        height: 7px;
    }

    section.toCenter {
        align-items: center !important;
    }

    .toCenter .right{
        display: none;
    }

    .toCenter .left {
        width: 100%;
    }

    .toCenter .left::after {
        width: 100%;
        height: 150px;
    }

    /* Blocks */
    div.block-login {
        width: 100%;
        max-width: 90%;
        padding: 1em;
    }

    div.block-login .logo {
        width: 175px;
    }

    div.block-login h1.text-center {
        font-size: x-large;
    }

    div.block-login .form-group {
        margin-bottom: .48rem;
    }

    div.block-login .text-center {
        font-size: small;
    }

    .block-login .card i {
        font-size: 4rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /*General*/
    h1{
        font-size: 2rem;
    }
    h1::after {
        margin: 1em auto;
    }

    .toCenter .right{
        display: none;
    }

    .toCenter .left {
        width: 100%;
    }

    .toCenter .left::after {
        width: 100%;
        height: 150px;
    }
    section.toCenter {
        align-items: center !important;
    }

    /* Blocks */
    .block-login .card i {
        font-size: 5rem;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* General */
    h1 {
        font-size: 2rem;
    }

    h1::after {
        margin: 1em auto;
    }

    .toCenter .left::after {
        width: 100%;
        height: 200px;
    }

    .toCenter .right {
        display: none;
    }

    .toCenter .left {
        width: 100%;
    }

    section.toCenter {
        align-items: center !important;
    }

    /* Blocks */
    .block-login .card i {
        font-size: 6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    /* General */
    h1 {
        font-size: 2rem;
    }

    h1::after {
        margin: 1em auto;
    }
    .toCenter .right:after {
        height: 470px;
        background-size: cover;
    }

    .toCenter .left::after {
        width: 100%;
        height: 200px;
    }

    .toCenter .right .claim {
        top: 1.25em;
        left: 1.25em;
    }

    /*Blocks*/
    .block-login .card i {
        font-size: 7rem;
    }
}