body {
    background: rgb(87, 87, 87);
    background: linear-gradient(42deg, rgba(107, 169, 201, 1) 0%, rgba(67, 116, 142, 1) 40%, rgba(67, 116, 142, 1) 60%, rgba(107, 169, 201, 1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: verdana;
    color: #666;
    font-size: 14px;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

body  main{
    width: 100%;
}

#loginArea {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 300px;
    width: 100%;
}

#loginArea h1 {
    text-align: center;
    font-family: 'Lobster', cursive;
    font-size: 36px;
}

#loginArea p {
    line-height: 25px;
}

#loginArea .ou {
    text-align: center;
    font-family: 'Lobster', cursive;
    font-size: 24px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px dashed #CCC;
}

#loginArea .login {
    width: 100%;
}

#loginArea .ordinaryForm .row {
    display: flex;
    margin-bottom: 10px;
}

#loginArea .ordinaryForm .row .field {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

#loginArea .ordinaryForm .row .field label {
    display: block;
    color: #666;
    margin-bottom: 5px;
    margin-left: 5px;
    font-size: 12px;
}

#loginArea .ordinaryForm .row .field .text {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #CCC;
    font-size: 18px;
    color: #666;
}

#loginArea .btns {
    padding: 10px;
}

#loginArea .btns .btn {
    background-color: #f1a80b;
    font-weight: bolder;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #FFF;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
}

#loginArea .btns .btn:hover {
    background-color: #be8508;
}

#loginArea .btns .blue {
    background-color: #4caee6;
}

#loginArea .btns .blue:hover {
    background-color: #79ceff;
}

#loginArea .forgot {
    text-align: center;
}

#loginArea .forgot a {
    text-decoration: none;
    color: #006cad;
}

#loginArea .forgot a:hover {
    color: #48bd65;
}

#loginArea .primeiro_acesso {
    text-align: center;
    margin-top: 25px;
    padding: 10px;
    background-color: rgba(80, 80, 80, 0.1);
    border-radius: 10px;
}


.contentMessage {
    margin: 10px;
    padding: 10px;
    font-size: 14px;
    color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.messageError {
    color: #900;
    background-color: rgba(153, 0, 0, 0.1);
}

.messageDone {
    color: #308b47;
    background-color: rgba(48, 139, 71, 0.1);
}


@media screen and (max-height: 600px) {

    body {
        display: block;
        height: auto;
    }

    #loginArea{
        margin: 0 auto;
    }
}