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




input[type=text]:hover
{
    border: 2px solid #e9b842;
}
input[type=text]:focus
{
    border: 2px solid #e9b842;
    outline: none;
}


input[type=email]
{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
input[type=email]:hover
{
    border: 2px solid #e9b842;
}
input[type=email]:focus
{
    border: 2px solid #e9b842;
    outline: none;
}

select:hover{border: 2px solid #e9b842;}
select:focus{border: 2px solid #60ba47;outline: none;}
textarea:hover{border: 2px solid #e9b842;}
textarea:focus{border: 2px solid #60ba47;outline: none;}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
 font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
/* change */
  color: #fff;
}

input[type=submit] {
  background-color: #e9b842;
  color: #123961;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  font-size: 16px;
    font-weight: 600;
}

input[type=submit]:hover {
  background-color: #bb8b17;
  color: #fff;
  transition: 300ms;
}

input[type=date]
{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}


.form-container {
  border-radius: 5px;
  background-color: #123961;
  padding: 20px;
}

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

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

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



   .error{
   color: #f00 !important;
   }
   .swal2-container {
  z-index: 9999 !important;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
