* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body {
	width: 100%;
}
#descript {
    padding: 10px;
    background-color: #50e3c2;
    color: #ffffff;
}
#descript h3 {
    width: 50%;
    display: inline-block;
}
#descript a {
    display: inline-block;
    text-decoration: none;
    color: #ddd;
    text-shadow: 1px 1px 2px #000;
}
#descript a:hover {
    color: #ffffff;
}

.content {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.content::after {
	content: "";
	display: block;
	clear:both;
}
.config {
	width: 500px;
	float: left;
	
}
textarea {
	width: 100%;
	height: 500px; 
}
.form-area {
	margin-left: 510px;
	border: 2px dotted #50e3c2;
	
}
.form-area > h1 {
	text-align: center;
	height: 50px;
}
.btn {
    display: inline-block;
    padding: .5em 1em; 
    text-align: center;
    font-size: .7em;   
    cursor: pointer;
    border: 1px solid transparent; 
    box-shadow: inset -1px -1px 2px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border-radius: 4px;
    background-color: #50e3c2;
    color:#fff;
}
.btn:focus {
  color: #333;
  background-color: #30e3c2;
  outline:0;

}
.form-group {
	margin: 10px auto;
	height: 75px;
	width: 90%;
	position: relative;
	
}
.label {
	display: inline-block;	
	margin-right: 15px;
	text-align: right;
	width: 100px;
}
.label1 {
	display: block;
}
.form-control {
	display: inline-block;
	width: 40%; 
    padding: 10px 10px;
    font-size: 14px;  
    color: #000; 
    border-radius: 6px;
    border: 2px solid #eee; 
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
    border-color: #fff;
    outline: 0; 
    border-radius: 6px;
    box-shadow: inset 0 1px 1px #fff, 0 0 8px  #50e3c2;

}
.btnpos {	
	position: absolute;
	width: 40%;
	right: 50%;   
	bottom:5px;
}
span, p {
	font-size: .5em;
	color:green;
	margin-left: 1.5em;
}