/*IMPORTAÇÃO DAS FONTES DO SITE DO SITE DO GOOGE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Open Sans', sans-serif;
}
input:-webkit-autofill{
	-webkit-box-shadow: 0 0 0px 1000px #ecf0f1 inset !important;
	-webkit-text-fill-color: #000 !important;
}
h1{
	font-size: 18pt;
	font-weight: bold;
}
.logo h1{
    color:  #2c3e50;
}
.coments{
	overflow: visible;
	margin-top: 50px;
	text-align: center;
	color: #2c3e50;
	background-color: #1abc9c;
	min-height: 100vh;
	height: 100%;
	padding: 30px 30px;
	margin-bottom: 100px;
}
.nome{
	font-weight: bold;
	color: ;
}
.img-profile{
	width: 60px;
	height: 60px;
	border-radius: 30px;
}
.btn-gl{
	border-radius: 25px;
	text-transform: uppercase;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	font-weight: bold;
	width: 200px;
	align-self: center;
	border-width: 0px;
	background-color: #2c3e50;
	border-radius: 1px solid #58af9b;
	transition: background-color .5s;
	height: 30px;
	margin: 10px;
}
.btn-xgl{
	border-radius: 25px;
	text-transform: uppercase;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	font-weight: bold;
	width: 300px;
	align-self: center;
	border-width: 0px;
	background-color: #2c3e50;
	border-radius: 1px solid #58af9b;
	transition: background-color .5s;
	height: 30px;
	margin: 10px;
}
.sessao{
	margin: 20px auto 50px;
}
.comentario{
	margin-top: 10px;
}

/*CONFIGURAÇÕES PARA DISPOSITIVOS MÓVEIS*/
@media screen and (max-width: 980px){
	h1{
		font-size: 15pt;
		font-weight: bold;
	}
    .logo h1{
        color:  #2c3e50;
    }
	.coments{
		overflow: visible;
		margin-top: 50px;
		text-align: center;
		color: #2c3e50;
		background-color: #1abc9c;
		min-height: 100vh;
		height: 100%;
		padding: 30px 30px;
		margin-bottom: 100px;
	}
	.nome{
		font-weight: bold;
		color: ;
	}
	.img-profile{
		width: 60px;
		height: 60px;
		border-radius: 30px;
	}
	.btn-gl{
		border-radius: 25px;
		text-transform: uppercase;
		color: #fff;
		font-size: 8px;
		cursor: pointer;
		font-weight: bold;
		width: 100px;
		align-self: center;
		border-width: 0px;
		background-color: #2c3e50;
		border-radius: 1px solid #58af9b;
		transition: background-color .5s;
		height: 25px;
		margin: 5px;
	}
	.btn-xgl{
		border-radius: 25px;
		text-transform: uppercase;
		color: #fff;
		font-size: 10px;
		cursor: pointer;
		font-weight: bold;
		width: 300px;
		align-self: center;
		border-width: 0px;
		background-color: #2c3e50;
		border-radius: 1px solid #58af9b;
		transition: background-color .5s;
		height: 20px;
		margin: 5px;
	}			
	.sessao{
		margin: 20px auto 50px;
	}	
	.comentario{
		margin-top: 10px;
	}	
}