div.main {
    background: #0264d6;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* FF3.6+ */
    background: -webkit-radial-gradient(center, ellipse cover, #0264d6 1%, red 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, #0264d6 1%, #1c2b5a 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0264d6', endColorstr='#1c2b5a', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    height: calc(100vh);
    width: 100%;
}

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

body {

    color: #606468;
    font: 87.5%/1.5em 'Open Sans', sans-serif;
    margin: 0;
}

a {
    color: #eee;
    text-decoration: none;
}

a:hover {
    font-weight: 700;
    color: white;
}

input {
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    padding: 0;
    -webkit-appearance: none;
}

p {
    line-height: 1.5em;
}

.container {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */

#login form {
    width: 250px;
}

#login,
.logo {
    display: inline-block;
    width: 50%;
}

#login {
    border-right: 1px solid #fff;
    width: 50%;
    align-self: center;
}

.logo {
    color: #fff;
    font-size: 50px;
    line-height: 125px;
    width: 110%;
    height: 100%;
    align-self: center;
}

#login form span.fa {
    background-color: #fff;
    border-radius: 3px 0px 0px 3px;
    color: #000;
    display: block;
    float: left;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

span.fa-solid {
    background-color: #fff;
    border-radius: 3px 0px 0px 3px;
    color: #000;
    display: block;
    float: left;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

#login form input {
    height: 50px;
}

fieldset {
    padding: 0;
    border: 0;
    margin: 0;

}

#login form input[type="email"],
input[type="password"] {
    background-color: #fff;
    border-radius: 0px 3px 3px 0px;
    color: #000;
    margin-bottom: 1em;
    padding: 0 16px;
    width: 200px;
}

#login form input[type="submit"] {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #2370eb;
    color: #eee;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    height: 30px;
    float: right;
}

#login form input[type="submit"]:hover {
    background-color: red;
}

#login>p {
    text-align: center;
}

#login>p span {
    padding-left: 5px;
}

.middle {
    display: flex;
    width: 100%;
    height: 100%;
    align-self: center;
}

#conteudo {
    align-self: center;
    margin-left: 8%;
}

#titulo {
    color: white;
    font-weight: bolder;
    margin-right: 36% !important;
    font-size: 3.5rem;
}

@media only screen and (max-height : 650px) {
    #titulo {}
}

@media only screen and (max-width : 600px) {
    .middle {
        display: flex;
        flex-direction: column-reverse;
    }

    #login {
        border: none;
        width: 100%;
        float: left;
    }

    #login form input[type="submit"] {
        margin-right: 80px;
        width: 80px;
    }

    .logo {
        margin-right: 100px;
        align-self: center;
    }
    #titulo {
        color: white;
        font-weight: bolder;
        margin-right: 36% !important;
        font-size: 3.0rem !important;
        padding-bottom: 0 !important;
    }
}

@media only screen and (max-width : 320px) {
    #login form input[type="submit"] {
        margin-right: 170px;
        width: 70px;
        font-size: 12px;
        flex-wrap: nowrap;
        padding-left: 10px;
    }

    .logo {
        margin-right: 50px;
        width: 100%;
        padding-right: 0px;
        line-height: normal
    }
    #titulo{
        color: white;
        font-weight: bolder;
        margin-right: 36% !important;
        font-size: 2.5rem;
        padding-bottom: 0 !important;

    }
}

@media only screen and (max-width : 230px) {
    #esqueci_e_botao {
        display: grid;

    }

    #login form input[type="submit"] {
        margin-top: 30px;
        width: 100%;
    }

    #login form input[type="text"],
    input[type="password"] {
        width: 100px;
    }

    #login form span.fa {
        width: 30px;
    }

    .logo {
        margin-left: 30px;
    }

    a {
        font-size: 16px;
    }

    a:hover {
        color: white;
        font-weight: 500;
    }
}