#contactForm{
    background-color: rgba(40,40,40,1);
    margin: 100 0 0 0;
}
fieldset{
    /*border-radius: 10px;
    border-style:groove;
    border: solid white 1px;*/
    border: 0;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}
.flexContainer{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#form1 input:not(#submit), 
#form1 textarea{ 
    background-color: rgba(40,40,40,1);
    padding: 4px;
    border-radius:3px;
    border: 1px dashed white;
    color: white;
    width:300px;
}

#submit{
    color: rgba(40,40,40,1);
    width:200px;
    height: 26px;
    cursor: pointer;
    font-weight: 600;
    padding: 8 15 20 15;
    border: 1px solid white;
    border-radius: 8px;
    margin: 60 0 20 0;
    text-transform: uppercase;
   background-image: linear-gradient(
    -225deg,     
    #ff1361 0%,
    #ff1361 5%,
    #ffff66 30%,
    #ffff66 70%,
    #ff1361 100%
     
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    animation: textclip 4s linear infinite;
}

.formInputs{
    display: block;
    margin: 0 10px;
    font-size: 1.3em;
}

#submit:hover{
    animation: submitAni 0.5s cubic-bezier(.36,.07,.19,.97) both;

}
@keyframes submitAni{
    100% {
            background-color:cornsilk;
            /*color: #ffff00;*/
    }
}

.inputHeader{
    margin: 10px 0 0 0;
    text-align: left;
    color: white;
}

#mailMsg{
    text-align: center;
    padding: 30px 0;
    font-size: 1.9em;
}