#gcf-form + p {
    margin-top: 10px;
    /* display: block; */
}

/* Spinner Animation */
.gcf-spinner {
    display: none; /* Hidden by default */
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: gcf-spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes gcf-spin {
    to { transform: rotate(360deg); }
}

/* Helper to show spinner */
.is-loading .gcf-spinner {
    display: inline-block;
}

/* Disabled button state */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#gcf-response{
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    font-size: 18px;
}