/* Form styling updates */
form.contactPage fieldset {
    position: relative;
    text-align: center;
}
form.contactPage fieldset label {
    position: absolute;
    top: 15px;
    left: 12px;
    opacity: 0.6;
    width: calc(100% - 12px) !important;
    float: none !important;
    display: inline-block;
    text-align: left !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 18px !important;
}
form.contactPage fieldset input[type="text"],
form.contactPage fieldset input[type="email"],
form.contactPage fieldset input[type="tel"],
form.contactPage fieldset textarea {
    width: 100% !important;
    box-shadow: none;
    border-radius: 0;
    padding: 16px 10px !important;
}

form.contactPage fieldset.focused label,
form.contactPage fieldset.completed label {
    bottom: auto;
    top: -9px;
    font-size: 10px !important;
    line-height: 1;
    padding-bottom: 5px;
    padding-top: 10px !important;
}

form.contactPage input[type="submit"] {
    border-radius: 0 !important;
    border: 2px solid #326b95;
    background-color: #326b95 !important;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: bold !important;
    padding: 16px 20px !important;
}
form.contactPage input[type="submit"]:hover {
    background: transparent !important;
    color: #326b95;
}
