h3 {
  color: #006489;
}

h3#form-format{
text-align: center;
}

h3.form-title{
  text-align: center;
}

.sn-arrow {
    display: none!important;
}

#form-format {
        border-radius: 15px; 
        background: #FFF; 
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25); 
        /*display: flex;*/
        /*width: auto; */
        padding: 45px 22px 35px 22px; 
        flex-direction: column; 
        justify-content: flex-end; 
        align-items: center;
        transition: box-shadow 0.5s ease-out;
    }

.glow-effect {
    box-shadow: 0 0 10px #FEBD12, 0 0 20px #FEBD12, 0 0 30px #FEBD12, 0 0 40px #FEBD12;
    transition: box-shadow 0.5s ease-out;
}

#form-format.glow-effect {
    box-shadow: 
        0 0 7px  rgba(0, 100, 137, 0.7), 
        0 0 12px rgba(0, 100, 137, 0.4), 
        0 0 15px rgba(0, 100, 137, 0.4), 
        0 0 18px rgba(0, 100, 137, 0.5);
    transition: box-shadow 0.5s ease-out;
}




input[type="submit"] {
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    padding: 15px 55px;
  
    border: 2px solid #006489;
    outline: 2px solid #006489;
    outline-offset: -2px;
    transition: outline-offset 200ms ease;
  
}

input[type="submit"]:hover {
    background: #FEBD12 !important;
    color: #453F3E;
    outline-offset: 3px;
    
}



@media (min-width: 576px) and (max-width: 767.98px) {
    /* Styles from Page 2 */
    .md-mt100 {
        margin-top: 25px !important;
    }
     
  #form-format {
        padding: 30px;  
        width: 400px;
        display: block;
        margin: 0 auto;
    }