



.m3form input[type="text"], .m3form input[type="email"], .m3form input[type="number"], .m3form select {
    width: 100%;
}

.m3form p {
    margin-bottom: 1em;
}

label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 0.5em;
}

.m3form input[type="submit"] {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 2px;
    padding: 0.8em 2em;
}

#m3f-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 2;
    cursor: pointer;
}

#m3f-overlay div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    background: url(img/spinner.gif) no-repeat;
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
}

#m3f-overlay-b {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.9);
    z-index: 2;
}

.m3f-success-msg {
    background-color: var(--accent);
    color: #fff;
    font-weight: 500;
    font-size: 1.2em;
    padding: 1em 1.5em !important;
}

