html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Classes da GESPAG */
body.login {
    display: flex;
    height: 100vh;
    margin: 0;
    justify-content: center;
    align-items: center;
    background: url(../img/bg.jpg) no-repeat center;
    background-size: cover;
}

div.cont_login {
    background: #ffffff;
    border: 3px solid #c35270;
    border-radius: 40px;
    padding: 50px;
    min-width: 360px;
}

div.cont_login h1 {
    margin: 0;
    background: url(../img/logo_gespag.png) no-repeat center;
    overflow: hidden;
    text-indent: -9999px;
    background-size: 100% auto;
    font-size: 80px;
}

div.cont_login label {
    display: block;
}

div.cont_login p {
    display: flex;
    flex-direction: column;
}

div.assinatura.login {
    position: absolute;
    bottom: 20px;
    right: 0;
}

input[type=email], input[type=password] {
    background-color: #f8f8f8;
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 12px 15px;
}

div.cont_login button {
    background: #fc7c1c;
    color: #fff;
    display: block;
    border: none;
    font-size: 14px;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.loading {
    width: 48px;
    height: 48px;
    padding: 10px 10px !important;
    animation: rotation 2s infinite linear;
    background: url(../img/loader.png) no-repeat;
    background-position: center;
    background-size: contain;
    color: transparent;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
}