/* MODELAGEM PARA O BODY E ITENS */

body {

    font-family: Arial, Helvetica, sans-serif;

    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;

    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;

    margin: 0px;
    padding: 0px;

    overflow-x: hidden;
    overflow-y: hidden;
}

* {

    list-style: none;
    box-sizing: border-box;

    margin: 0;
    padding: 0;
}

.AZPALOGO {

    width: 200px;
}

/* ---- */

.container-fluid {

    /* background: #D5E4CF; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.main {

    position: relative;
    display: flex;
    align-items:center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.center {

    background: #FFFFFF;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    width: 400px;
    padding: 6px;
    height: 300px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-radius: 5px;
}

.aside {

    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    gap: 5px;
}

.labelbox {

    padding: 0px;
    margin: 0px;
    display: block;
    text-align: center;
    color: #5f5f5f;
}

.case {

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    padding: 2px;
}


.inputbox {

    color: #5f5f5f;
    padding: 5px;
    width: 300px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-bottom: 1.5px solid #3dc2b5;
    border-top: none;
    border-right: none;
    border-left: none;
    outline: none;
    transition:  0.5s ease-out;
}

.inputbox:active , .inputbox:hover  {

    border-bottom: 1.5px solid #77dd77;
}

.buttonbox {

    width: 300px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    background:  #3dc2b5;
    color: #FFFFFF;
    border-radius: 5px;
    border: none;
    padding: 5px;
    transition: 0.5s ease-out;

}

.buttonbox:hover {
    cursor: pointer;
    background: #77dd77;
    box-shadow: none;
}

.olho {

    position: absolute;
    padding-left: 10px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    color: #b4b4b4;
    right: 8px;
    top: 95px;
}

.olho:hover {

    color: #57c620 ;
}
.olho:active {

    color: #5f9711 ;
}

 /* PARTE QUE MANDA DE VOLTA PARA O SITE */
.site {

    position: absolute;
    top: 0px;
    right: 0px;
    width: 200px;
    height: 40px;
}

.p1 {

    position: absolute;
    top: 10px;
    right: 30px;
    padding: 5px;
    font-size: 17px;
    color: #b4b4b4;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 25px;
}
.p1 img{

    margin-top: 2px;
}


.p1:hover {

    box-shadow: #77dd778d 0px 5px 14px;
}


@media only screen and (max-width: 650px) {
    

    .center {
        width: 100%;
        box-shadow:  none;
    }

}

@media only screen and (max-width: 450px) {
 
    .AZPALOGO {

        width: 65%;
    }
 
    .center {
        width: 100%;
        box-shadow:  none;
    }
    .inputbox {

        width: 65%;
    }
    .buttonbox {

        width: 65%;
    }

}