.quadrado-chat{
	width: 60vw;
	height: 40vw;
	background-color: white;
	border: 5px solid black;
	border-radius: 30px;
	margin-left: 20vw;
	overflow: hidden;
	margin-top: 2vh;
	display: none;
	flex-direction: column;

}

.campo-mensagem{
	width: 100%;
	height: 8%;
	background-color: lightgray;
	display: flex;
	justify-content: center;
	padding-top: 1%;
	padding-bottom: 1%;
}

.mensagens-chat{
	height: 91%;
	background-color: lightgreen;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
}

.botao-enviar{
	height: 80%;
	margin: 1%;
	margin-top: 0%;
	cursor: pointer;
}

.input-mensagem{
	width: 90%;
	margin-left: 2%;
	border-radius: 40px;
	height: 80%;
}

.quadrado-chat.inserir-nome{
	justify-content: center;
	display: flex;
	align-items: center;
	gap: 2%;
}

.texto-inserir-nome{
	font-size: 30px;
	color: black;
	font-family: "Oswald", sans-serif;
}

.input-inserir-nome{
	width: 50%;
	height: 10%;
	border-radius: 20px;
	padding-left: 20px;
}

.botao-enviar-nome{
	height: 10%;
	margin: 1%;
	margin-top: 0%;
	cursor: pointer;
	background-color: skyblue;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
}