
.root {
	width: 800px;
	margin: 0 auto;
}
@media screen and (max-width: 800px) {
	.root {
		width: 90%;
	}
}

input {
    width: 100%;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 10px;
    text-align: left;
    font-size: 12px;
}
input:focus {
    outline: none;
}

textarea {
    width: 100%;
    height: 260px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    text-align: left;
    font-size: 12px;
    resize: none;
}
textarea:focus {
    outline: none;
}
