div {
  margin: 10px
}



table {
    border: 5px solid green;
		width: 100%;
		border-collapse: separate;
    border-spacing: 10px 50px;
		font-size: 16;
}
th {
    height: 10px;
		background-color: #4CAF50;
    color: white;
    font-size: 16px;
}
td {
    height: 10px;
    vertical-align: middle;
}
th, td {
    padding: 15px;
    text-align: right;
		border-bottom: 1px solid #ddd;
	  font-size: 16px;
}

caption {
    caption-side: top;
		font-size: 20";
}
input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
		maxlength="20"; 
		size="30"; 
		align="middle";
		border: 2px solid red;
    border-radius: 4px;
		background-color: red;
    color: black;
		text-align: right;
		font-size: 16px;
		
}
input[type=text]:focus {
    background-color: lightblue;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
    font-size: 16px;
}
.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
		width: 100%;
		box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
		font-size: 16px;
}

p {
    font-size: 16px;
    width: 100%;
    padding: 5px 5px;
}

