body{
	margin:0;
	padding: 0;
	font-family: 'Open Sans', sans-serif, arial;
	font-size: 14px;
	background: rgb(0 0 0 / 5%); /*Cor de fundo transparente - Pagina Home*/
	overflow: hidden;
	}

*{
	font-family: 'Open Sans', sans-serif, arial;
    font-size: 14px;
	color:#555;
}

.main{
	max-width:1024px;
	width:100%;
	margin:auto;
	}
	
.header{
	background: #555; /*Cor de fundo da barra de titulo - Topo Home*/
	}
	
.header h1{
	max-width:1024px;
	width:100%;
	margin:0 auto;
	padding:10px 0;
	font-size: 20px;
	color: #fff;
	text-align: center;
	font-weight: 300
	}
.boas-vindas{
	font-size: 18px;
	color: #000;
}	
.userscreen{
	margin: auto;
	text-align: center;
	margin-top: 24%
	}
	
.input-user {
  padding: 10px;
  border: solid 2px #c9c9c9;
  transition: border 0.3s;
  width:250px;
}

.input-user:focus,
.input-user.focus {
  border: solid 2px #726da5;
}

.btn {
	background-color:#5cb85c;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family: 'Open Sans', sans-serif, arial;
	font-size:13px;
	padding:6px 12px;
	text-decoration:none;
	margin-bottom: -11px;
	border-radius: 3px;
}

.btn:hover {
	background-color:#4cae4c;
}

.btn:active {
	position:relative;
	top:1px;
}

.btn-user{
	padding:9px 30px;
	position: relative;
	top: 0px;
	font-size: 16px;
	font-weight: 300;
	border: 0px;
	}

#result{/*Cor de fundo do chat (conversas)*/
	max-width:1024px;
    width:100%; padding:10px;
	max-height: 80%;
	/*overflow-y:auto;*/
	}

.chatcontrols{
	position: fixed;
	bottom: 0;
	width: 100%
	}
	
.chatcontrols form{
	margin: 0
	}
	
#centraliza-caixa-texto{
	text-align: center;
}
	
#chatbox {
    background: none repeat scroll 0 0 #FCFCFC;
    border: 1px solid #777;
    border-radius: 2px 2px 2px 2px;
    color: #6C6C6C;
    height: 35px;
    margin-top: 10px;
    outline: medium none;
    padding: 10px 10px;
    width: 65.5%; /*Tamanho da caixa de texto*/
    height: 40px;
    font-size: 16px;
    font-weight: 300
}

#chatbox:focus{
    background: none repeat scroll 0 0 white;
    border-color: #555;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3) inset;
    color: #A6A6A6;
 	content:"";
}

.btn-send{
	font-size: 20px;
	padding: 5px;
	font-weight: 300px;
	border: 0px;
	}
	
.btn-clear{
	padding: 5px;
	font-size: 20px;
	font-weight: 300px;
	border: 0px;
	background: #df4242;
	}
.btn-clear:hover {
	background-color:#c34949;
}	
	
.logout{
	float: right;
	color: #000;
	text-decoration: none;
	font-size: 20px
	}