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

.content_title {
	font-weight: bold;
	margin-top: 20px;
}

input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 10px;
    text-align: left;
    resize: none;
    margin-top: 2px;
}
input:focus {
    outline: none;
}