curver * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
     font-family: 'Open Sans', sans-serif;
}

label {
    margin-top: 5px;
    margin-bottom: 5px;
}

.btnSubmit{
    background-color: #0F7D97 !important;
    height: 35px;
    min-height: 35px;
    border: none;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btnSubmit:hover{
    background-color: #24afce !important;
    -webkit-box-shadow: 0px 10px 13px -7px #00000073, 5px 5px 5px 5px rgba(66,66,66,0); 
box-shadow: 0px 10px 13px -7px #0000008a, 5px 5px 5px 5px rgba(66,66,66,0);
}

.logoIndex{
    height: 100%;
    max-height: 250px;
}
.logoDash{
    height: 100%;
    max-height: 200px;
}

header{
    height: 40vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#findClient{
    display: grid;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}
.column{
    display: grid;
    justify-content: center;
    z-index: 9;
}

::placeholder{
    font-size: 14px;
}

.boxLogo {
    width: 55%;
    min-width: 55% !important;
    display: flex;
    justify-content: center;
    
}
.boxForm{
    width: 30%;
    min-width: 30% !important;
    height: 100%;
    max-height: 350px;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    z-index: 9;
}
#curver {
    margin-top: -240px;
    position: fixed;
    bottom: 0;
    z-index: -1 !important;
    left:0;
}

#formLogin {
    z-index: 9;
    width: 350px;
    height: 100%;
    min-height: 300px;
    max-height: 300px;
    display: grid;
    padding: 15px;
    background-color: #F5F5F5;
    -webkit-box-shadow: 0px 10px 13px -7px #00000073, 5px 5px 5px 5px rgba(66,66,66,0); 
box-shadow: 0px 10px 13px -7px #0000008a, 5px 5px 5px 5px rgba(66,66,66,0);
}

a{
    text-decoration: none !important;
    cursor: pointer;
    color: #0F7D97;
    font-size: 16px;
    /* margin-top: 20px; */
}

.input{
    padding-left: 5px;
    padding-right: 5px;
  height: 35px;
  min-height: 35px;
  border-radius: 3px;
  border: solid 1px rgba(34, 34, 34, 0.322);  
  margin-bottom: 10px;
}

.flex{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flexColumn{
    height: auto;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #24afce;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 100px;
}

table { 
	width: 100%; 
	border-collapse: collapse; 
	/*margin:50px auto;*/
	}

tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background: #0F7D97; 
	color: white; 
	font-weight: bold; 
	}

td, th { 
	padding: 10px; 
	border: none;
	text-align: left; 
	font-size: 14px;
	}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	table { 
	  	width: 100%; 
	}

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

	td:before { 
		position: absolute;
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		content: attr(data-column);

		color: #000;
		font-weight: bold;
	}

}