.container .col {
  max-width: 700px;
  height: auto;
  margin: auto;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 16px;
  display: table;
}

input[type=text], select, textarea {
  width: 100%;
  height: 30px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  display: table;
  outline: none;
  transition: .3s;
  display: inline-table;
}

input[type=text]:focus {
  border-color: dodgerBlue;
  box-shadow: 0px 0px 8px 0px dodgerBlue;
}

textarea:focus {
  border-color: dodgerBlue;
  box-shadow: 0px 0px 8px 0px dodgerBlue;
}

input[type=submit] {
  background: rgb(0,167,189);
  background: linear-gradient(180deg, rgba(0,167,189,1) 0%, rgba(0,122,149,1) 100%);
  margin: auto;
  padding: 10px;
  float: right;
  color: white;
  padding: 4px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}

input[type=submit]:hover {
  background: rgb(0,98,111);
  background: linear-gradient(180deg, rgba(0,98,111,1) 0%, rgba(0,72,88,1) 100%);
}

input[type=submit]:focus {
  border-color: dodgerBlue;
  box-shadow: 0px 0px 8px 0px dodgerBlue;
}

.inputWithIcon input[type=text] {
  padding-left: 35px;
}

.inputWithIcon {
  position: relative;
}

.inputWithIcon i {
  position: absolute;
  left: 0px;
  top: 13px;
  padding: 0px 8px;
  color: #ccc;
}

.inputWithIcon input[type=text]:focus + i {
  color: dodgerBlue;
}

