body {
    background: linear-gradient(to right, #00518d, #82caff, #0d6efd);
    background-size: 200% 200%;
    animation: animateGradient 10s linear infinite; /* Aplicando a animação */
    height: 100vh;
}
@media(max-width:999px) {
    #logoceomed {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        height:70px !important;
    }

    .middle {
        flex-direction: column;
        height: unset !important;
        width: 300px !important;
        margin-top: 15px;
    }

    .middle #middle {
        display: none !important;
    }

    .middle #down {
        display: none !important;
    }

    #leftDiv {
        width: 100% !important;
        height: 20% !important;
        border-radius: 15px 15px 0px 0px !important;
    }

    #leftDiv #head {
        padding-top: 0px !important;
    }

    #rightDiv {
        width: 100% !important;
        margin-top:10px;
    }

    #iconUserDiv {
        height: 0% !important;
        display: none !important;
    }
    .page{
        align-items:flex-start !important;
    }
}

@media(max-width:1100px) {
    .page {
        align-items: flex-start !important;
    }
    .middle {
        height: unset !important;
        margin: 10px;
    }

    #iconUserDiv {
        height: 0% !important;
        display:none !important;
    }
    #rightDiv {
        margin-top: 10px;
    }
}
@keyframes animateGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#buttonDiv {
    width: 100%;
    display: flex;
    justify-content: center;
}

    #logoceomed {
        height: 90px;
        padding-top: 20px;
    }

#iconUserDiv {
    height: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 85px;
    color: #00518d;
    margin-bottom: 10px
}

.page {
    width: 100%;
    height: 100%;
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
    
}

    .middle {
        
        display: flex;
        border-radius: 15px;
        background-image: linear-gradient(white,white);
    }

        .middle #rightDiv {
            width: 45%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            border-radius: 15px;
            background-image: linear-gradient(white,white);
            padding: 10px;
        }



        .middle #leftDiv {
            display: flex;
            flex-direction: column;
            width: 55%;
            /*height: 100%;*/
            border-radius: 15px 0px 0px 15px;
            background-color: #82caff;
            gap: 50px;
            justify-content: center;
            padding: 10px;
        }

    #leftDiv #head {
        display: flex;
        justify-content: center;
        padding-top: 10px;
    }


    #leftDiv #middle {
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        color: white;
    }

    #leftDiv #down {
        display: flex;
        justify-content: center;
        padding: 20px;
        text-align: center;
        color: white;
        font-size: x-large;
    }

    #footerRightDiv {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    #footerRightDiv #social {
        width: 100%;
        border-radius: 0px 0px 15px 0px;
        display: flex;
        justify-content: space-evenly;
        font-size: xx-large;
    }

    #social > span > a {
        color: #00518d;
    }

    #middle h2 {
        font-size: 50px;
    }

    .middleForm {
        width: 75%;
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
        align-items: flex-start;
    }

    .middleForm #btnLogin {
        border-radius: 25px;
        padding: 10px;
        width: 90px;
    }

    .middleForm input {
        border-radius: 20px;
    }

    .error {
        position: relative;
        padding: 1rem 1rem;
        margin-bottom: 1rem;
        border: 1px solid transparent;
        border-radius: 1.25rem;
        color: #842029;
        background-color: #f8d7da;
        /*border-color: #f5c2c7;*/
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

.passContainer{
    display:flex;
    width:100%;
}

.passContainer input {
    border-radius: 20px 0px 0px 20px !important;
    border-right-width:0px;
}

.passContainer button {
    border-radius: 0px 20px 20px 0px;
    border-left-width: 0px !important;
    border: 1px solid #ced4da;
    background: white;
    padding: 6px 8px 6px 6px
}

.passContainer button svg {
    width: 25px;
    height: 25px;
}