* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  box-shadow: 0 -2px 0 #3264FF inset;
  width: 100%;
  padding: 12px;
  resize: vertical;
}

input[type=email] {
  box-shadow: 0 -2px 0 #3264FF inset;
  width: 100%;
  padding: 12px;
  resize: vertical;
}

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

input[type=submit] {
  background: #000;

  font-size: 12pt;
  color: white;
  padding: 12px 20px;
  border: none;
  border-bottom: 1px solid #0032b4;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  box-shadow: 0 -2px 0 #3264FF inset;
  transition: all 0.3s ease 0s;
	}


input[type=reset] {
  background: #000;

  font-size: 12pt;
  color: white;
  padding: 12px 20px;
  border: none;
  border-bottom: 1px solid #0032b4;
  cursor: pointer;
  float: left;
}

input[type=reset]:hover {
  box-shadow: 0 -2px 0 #3264FF inset;
  transition: all 0.3s ease 0s;
	}

  input[type='radio'] { 
    transform: scale(1.2);
    margin-top: 6px;
  }

.col-11 {
  float: left;
  width: 11.6%;
  margin-top: 6px;
  font-family: arial;
  font-weight: normal;
  font-style: normal;
  font-size: 10pt;
  color: rgb(225,180,55);
}

.col-30 {
  float: left;
  width: 30%;
  margin-top: 6px;
  font-family: arial;
  font-weight: normal;
  font-style: normal;
  font-size: 10pt;
  color: rgb(225,180,55);
}

.col-40 {
    text-align: right;
    width: 40%;
    margin-top: 6px;
    font-family: arial;
    font-weight: bold;
    font-style: normal;
    font-size: 10pt;
    color: rgb(225,180,55);
  }

  .col-60 {
    text-align: left;
    width: 60%;
    margin-top: 6px;
    font-family: arial;
    font-weight: bold;
    font-style: normal;
    font-size: 10pt;
    color: rgb(55,100,225);
  }

  .col-70 {
  float: left;
  width: 70%;
  margin-top: 6px;
}

.col-70flex {
    display: flex;

    float: left;
    width: 70%;
    margin-top: 6px;
    font-family: arial;
    font-weight: normal;
    font-style: normal;
    font-size: 10pt;
    color: rgb(225,180,55);
  }

.alert-danger{
  font-size: 12pt;
  color: white;
}

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

@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

