* {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 3px 3px 3px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  text-align: left;
}

label {
  padding: 10px 5px 0px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 3px 40px 3px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #66666666;
  padding: 3px;
}

.col-21 {
  float: right;
  width: 10%;
  margin-top: 3px;
}

.col-79 {
  float: left;
  width: 50%;
  margin-top: 3px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 580px) {
  .col-79, input[type=submit] {
    width: 50%;
    margin-top: 0;
    text-align: center;
    padding: 0px 0px 0px 0px ;}
    
	}
@media screen and (max-width: 580px) {
  .col-21, label {
    width: 100%;
    margin-top: 0;
    text-align: left;
    padding: 0px 0px 0px 0px ;}
    }
