body{
			background-color: #fff;
		}
		.main{
			width:1250px;
			margin: 50px;
			border-radius: 10px;
			border: 5px #1BBD36;
			border-left: 40px darkgreen;
			box-shadow: 1px 2px 10px #555;
		}
		.info{
			width: 100%;
			background-color: #1BBD36;
			padding: 7px;
			text-shadow: 1px 1px 1px #222;
			color: #fff;
			font-size: 20px;
		}
		.form-box{
			padding: 20px;
			background-color: #1BBD36;
		}
		label{
			color: #1BBD36;
			font-size: 18px;
		}
		.inp,.msg-box{
			width: 100%;
			padding: 10px;
			margin-top: 4px;
			margin-bottom: 5px;
			border-radius: 5px;
			border: 2px;
			font-weight: bold;
			color: #030303;
			border-right: 15px;
			border-left: 15px;
			resize: none;
		}
		.msg-box{
			height: 80px;
		}
		.inp:focus,.msg-box:focus{
			outline: none;
			border: 2px;
			border-right: 15px;
			border-left: 15px;
		}
		.sub-btn{
			width: 100%;
			padding: 10px;
			border-radius: 5px;
			margin-top: 5px;
			border: none;
			background: linear-gradient(orange,#800000);
			cursor: pointer;
			color: #fff;
			font-size: 20px;
			text-shadow: 1px 1px 1px #444;
		}
		.sub-btn:hover{
			background: linear-gradient;
			opacity: 0.8;
			transition: all ease-out 0.2s;
		}
		.sub-btn:focus{
			outline: none;
		}
		@media(max-width: 720px){
			.main{
				width: 90%;
			}
		}



