  body {
  background-image:url('images/bg.jpg');
   background-repeat: no-repeat;
  background-size: cover;
}

body {
  font-family: Arial;
}

* {
  box-sizing: border-box;
}


input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius:15px;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius:15px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #f0ffff;
  border-radius:15px;
}

.container {
  border-radius: 15px;
  background-color: #f0ffff;
  padding: 10px;
}


.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}


@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}