/* Remove white input backgrounds */
.eapps-form-element-input,
.eapps-form-element-textarea,
.eapps-form-element-input input,
.eapps-form-element-textarea textarea {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,.3) !important;
}

/* Placeholder */
.eapps-form-element-input input::placeholder,
.eapps-form-element-textarea textarea::placeholder {
    color: #bdbdbd !important;
}

/* Labels */
.eapps-form-element-label,
.eapps-form-label {
    color: #ffffff !important;
}

/* Focus */
.eapps-form-element-input input:focus,
.eapps-form-element-textarea textarea:focus {
    border-bottom: 1px solid #d4af37 !important;
    outline: none !important;
    box-shadow: none !important;
}