
html{
    background-image: linear-gradient(10deg, rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.40), rgba(0, 0, 255, 0.75) );
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
    margin: 20px 0px;
    width: 700px;
    height: 535px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    gap: 0;
}
  
.janela_login_left{
    width: 300px;
    height: 100%;
    padding:20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin:auto auto;
    background-color: rgba(0, 0, 200);
    box-shadow: 5px 5px 015px #4658fe;

}

.janela_login_left img{
    margin: 0px;
    width: 100%;
    height: auto;
    padding: 0px;
    border: none;
    border-radius: 10px;
}

.janela_login_left button{
    margin-top: 20px;
    font-size: 18px;

}

.janela_login_left h2, .janela_login_left h3, .janela_login_left h4{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}
.janela_login_left h2{ text-align: center; }
.janela_login_left h3{ text-align: center; }
.janela_login_left h4{ text-align: left; }


.janela_login{
    width: 400px;
    height: 100%;
    padding:20px;
    padding-top: 80px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin:auto auto;
    background-color: rgba(180, 180, 255);
    box-shadow: 5px 5px 015px #4658fe;
}
 
.selectClient{
    cursor: pointer;
    box-shadow: 5px 5px 10px rgb(150, 150, 150);
    border-radius: 10px;
    border: none;
    text-align: center;
}
    .selectClient:hover{
        border: 1px solid gray;
        border-radius: 10px;
    }

.selectClient img{
    max-width: 100%;
    max-height: 100%;
}

.selectClient .divInputRight{
    padding-left: 10px;
    cursor: pointer;
}
    .selectClient .divInputRight h4{
        margin: auto;
        margin-top: 5px;
    }

    .selectClient .divInputRight h3{
        margin: auto;
        margin-top: 12.5px;
    }


.img{
    height: 50px; 
}

.titlePage{
    margin: 10px 0px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: blue;
}

.divInput2{
    text-align:left;
    color: rgb(30, 30, 30);
    border-radius: 10px ;
    border: none;
    width: 310px;
    height: auto;
    padding-left: 5px;
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
    
}

    .divInput2 input{
        width: 15px;
        height: 15px;
        cursor: pointer;
    }

    .divInput2 label{
        font-size: 15px;
        margin: 0px;
        cursor: pointer;
    }


.divInput{
    text-align:left;
    border-radius: 10px ;
    background-color: #f0eeee;
    /*box-shadow: 5px 5px 5px lightgray;*/
    border: none;
    width: 310px;
    height: 55px;
    padding-left: 10px;
    margin-bottom: 15px;
}
    .divInput label{
        font-size: 12px;
        margin-left: 10px;
    }
    

.divInputLeft{
    width: 40px;
    height: 45px;
    float: left;
    position: relative;
}
    .divInputLeft img{
        width: 30px;
        height: 30px;
        margin: 7.5px;
    }

.divInputRight{
    width: calc( 100% - 55px);
    float: left;
}

.divInput label{
    margin-bottom: 0px;
}

.divInput input{
    margin-left: 10px;
	font-weight: 250;
	font-size: 16px;
    padding: 0px 5px;
    border:none;
    margin-bottom:0.5px;
    outline:none;
    width:235px;
    background-color: #f0eeee;
    color: darkblue;
}


#texto_leg{
	font-size: 12px;
}

.imgAuth{
    height: 120px; 
}

/* Cor de fundo do autocomplete */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #f0eeee inset;
}

/* Cor do texto do autocomplete */
input:-webkit-autofill {
    -webkit-text-fill-color: darkblue !important;
}


.btn_view_meddium{
    text-decoration: none;
    text-align: center;
	font-size: 16px;
	background-color: blue;
    color:white;
	border: 2px solid  blue;
    border-radius: 5px;
	padding: 8px;
	margin: 6px;
    -webkit-transition-duration: 0.6s; /* safari */
	transition-duration: 0.6s;
	cursor: pointer;
    width:310px;
    min-height: 45px;
}

.janela_login .btn{
	margin: 6px;
    min-height: 45px;
    width:310px;
	padding: 8px;
    border-radius: 5px;
    color: darkgreen;
    font-weight: bold;
}


.btn_view_meddium:hover{
    background-color: white;
	color: blue;
    box-shadow: 5px 5px 15px #4658fe;
}

.btn_view_meddium img{
    max-height: 22px;
}



@media screen and (max-width: 500px) {
    html{
        width: 100%;
        height: auto;
        padding: 20px;
        overflow: auto;
    }
    body {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .janela_login_left{
        width: 100%;
        height: auto;
        border-radius: 00px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;

    }


    .janela_login{
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 0px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

}
