/*
Theme Name: zawiyah
Author: Haider Ali Cheema
Description: Zawiyah website built using boilerplate for developing Wordpress themes including Gulp, Tailwind CSS etc.
Version: 1.0
Text Domain: boilerplate
*/
/* All text/email/tel inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    @apply w-full bg-white border border-gold border-3 text-white px-10 rounded mb-4;
}

/* Textarea */
.wpcf7 textarea {
    @apply w-full bg-white border border-gold border-3 text-black p-3 rounded mb-4 h-32;
}

/* Select dropdown */
.wpcf7 select {
    @apply w-full bg-white border border-gold border-3 text-black p-3 rounded mb-4;
}

/* Submit button */
.wpcf7 input[type="submit"] {
    @apply bg-gold text-black font-bold px-8 py-3 cursor-pointer hover:opacity-90;
}