/* - - - - - - - - - - - - - - - - - - - - -

 Title : Wufoo form custom CSS for dark mode
 Author : Nicole Tsang
 URL : http://narcity.com

 Last Updated : March 14th, 2023

- - - - - - - - - - - - - - - - - - - - - */

/* import Archivo font */
@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
body, .wufoo li, .wufoo input.text, .wufoo textarea.textarea, .wufoo input.file, .wufoo li label.desc, .wufoo .section h3, .wufoo .section div,
.wufoo li span, .wufoo li span label {
    font-family: "Archivo", Helvetica, sans-serif;
}
.wufoo li label.desc{
    font-size: 120% !important;
};

.wufoo input.text{
    border-radius:5px;
}

#header{
    display: none;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .wufoo li label.desc{
        color: #D9D9D9 !important;
    }
    .wufoo li section h3, section li section div, .wufoo .li .choice .choice_text, .wufoo input.text, .wufoo .section h3, .wufoo .section div,
    .wufoo li span, .wufoo li span label {
        color: #D9D9D9 !important;
    }
}