
html{
    background-image: linear-gradient(10deg, rgba(44, 62, 80, 0.95), rgba(44, 62, 82, 0.50), rgba(44, 62, 80, 0.95) );
    /*background-image: radial-gradient(circle at center, var(--background-color) 0%, var(--primary-color) 100%);*/

    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
    margin: 20px 0px;
    width: 700px;
    height: 535px;
    border-radius: 20px;
    font-family: var(--font);
}

.janela_login_left{
    width: 300px;
    height: 100%;
    padding:20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin:auto auto;
    background-color: var(--background-bg);
    color: var(--text-color);
    float: left;
    box-shadow: 5px 5px 15px rgb(44, 62, 80);
}

.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{ text-align: center; }
.janela_login_left h4{ text-align: left; }

#btnBack{
    background-color: var(--headerbar-btn);
    box-shadow: 5px 5px 10px var(--headerbar-btn);
    color: var(--headerbar-color);
}

#btnBack:hover{
    background-color: var(--headerbar-btn-hover);
}

.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: var(--primary-color);
    float: right;
    box-shadow: 5px 5px 015px rgb(44, 62, 80);
    color: white;
}
 
.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-weight: bold;
}

.divInput2{
    text-align:left;
    color: white;
    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;
    color: var(--text-color);
    /*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: darkred;
}


#texto_leg{
	font-size: 12px;
    color: white;
}

.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: darkred !important;
}


.btn_view_meddium{
    text-decoration: none;
    text-align: center;
	font-size: 16px;
	background-color: var(--button-bg);
	color: var(--text-color);
	border: 2px solid  rgb(100, 100, 100);
    border-radius: 5px;
	padding: 8px;
	margin: 6px;
    -webkit-transition-duration: 0.6s; /* safari */
	transition-duration: 0.6s;
	cursor: pointer;
    width:310px;
    min-height: 45px;
    font-weight: bold;
}


.btn_view_meddium:hover{
    background-color: var(--button-hover);
    box-shadow: 5px 5px 15px var(--text-color);
}

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



@media screen and (max-width: 500px) {
    html{
        height: auto;
    }
    body {
        margin: 50px 0px;
        width: 400px;
        height: auto;
    }
    
    .janela_login_left{
        width: 100%;
        border-radius: 0px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;

    }

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

}
