/*
Theme Name:     divi-child
Theme URI:      http://elegantthemes.com
Description:    A super simple, self-contained contact form you can drop into your existing theme.
Author:         Tim
Author URI:     http://www.lewiscreative.net
Template:       Divi
Version:        0.1
*/
 
@import url("../Divi/style.css");

.ygl_form  input{
 width: 100%;
 padding: 12px 20px;
 margin: 2px 0;
 border: 1px solid black;
 background-color: lightgrey;
 color: black;
 font-family: gotham-narrow;
 font-size: 18px;
}

.ygl_form  input:focus {
  background-color: lightblue;
  }
  
.ygl_form textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: lightgrey;
	 border: 1px solid black;
}

.ygl_form textarea:focus {
background-color: lightblue;
  }