button, input[type=submit], .blue-hollow-but {
    background-color: black;
    border: none;
    color: white;
    padding: 1.2em 2.2em 1.1em;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.7em;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid black;
    /* border-radius: 100px; */
    transition: all 0s ease;
  }
  button:hover, input[type=submit]:hover {background-color: var(--c1); border: 1px solid var(--c1); color:black}

  button.hollow-but {border: 1px solid white; background: transparent; }
  button.hollow-but:hover {background-color: var(--c1); color:black; border: 1px solid var(--c1);}
 
  button.hollow-but2 {border: 1px solid var(--c1); background: transparent; color:var(--c1); }
  button.hollow-but2:hover {background-color: var(--c1);}

  .blue-hollow-but {border:1px solid var(--c1); background: transparent; }
  .blue-hollow-but a {letter-spacing: 0.15em; font-size: 1em; color: var(--c1);}
  .blue-hollow-but:hover {background-color: var(--c1);} 
  .blue-hollow-but:hover a {color:white}  

  button[disabled] {background-color: transparent;
    border-color: transparent;
    color: black;}

    input[type=text], input[type=tel], input[type=email], select {
        -webkit-appearance: none;
        font-family: inherit;
        font-weight: 400;
        font-style: normal;
        /* text-transform: uppercase; */
        letter-spacing: 0.0em;
        text-align: left;
        margin-bottom: .2em;
        font-size: 18px;
        font-size: 1.2em;
        color: #000;
        background: transparent;
        position: relative;
        bottom: 0;
        float: left;
        padding: 2em 1.4em 1.1em 0;
        text-decoration: none;
        border: 0px solid grey;
        border-bottom:2px solid var(--c4); 
        box-sizing: border-box;
        width: 100%;
    }

    input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus {
        border-bottom:2px solid var(--c1); 
    }    

        input[type=text]:hover, input[type=tel]:hover, input[type=email]:hover {
        border-bottom:2px solid var(--c1); 
    }    

    /* Remove blue autofill background in Chrome/Edge/Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important; /* your background color */
  -webkit-text-fill-color: #000000 !important; /* text color */
  transition: background-color 5000s ease-in-out 0s;
}


    textarea {  
        height: 8em;
        width: 100%;
        border: none;
        border-bottom: 2px solid var(--c4);
        /* border-right: 1px solid var(--c1); */
        background-color: transparent;
        -webkit-appearance: none;
        font-family: inherit;
        font-weight: 400;
        font-style: normal;
        font-size: 1.2em;
        color: #A0A5BB;
        padding: 1.3em 1.4em 1.1em 0;
        
    margin-top: 0.9em;}
    
    input[type=submit] {margin-top: 1em; cursor: pointer;}

    select { 
        font-family: inherit;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0.0em;
        text-align: left;
        margin-bottom: 0;
        margin-right: 0em;
        font-size: 18px;
        font-size: 1.2em;
        color: inherit;
        color: var(--c4);
        background: white;
        position: relative;
        bottom: 0;
        float: left;
        padding: 0.6em 0.7em 0.5em;
        text-decoration: none;
        border: 0px solid grey;
        box-sizing: border-box;
        width: 16em;
        margin-top: -0.2em;}
        

           
        /* Base style for select to match input fields */
select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #506050; /* base gray-green line */
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23506050' height='10' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M0 0 L5 5 L10 0 Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 10px;
  cursor: pointer;
}

/* Focus / active state — bright green underline */
select:focus {
  border-bottom: 1px solid #00ff44; /* same as in screenshot */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300ff44' height='10' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M0 0 L5 5 L10 0 Z'/></svg>");
}

/* Optional hover for nicer feedback */
select:hover {
  border-bottom-color: #00ff44;
}

/* Disabled state */
select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
    

select.wpcf7-form-control {padding: 2.7em 1.4em 1.1em 0;}
    
    input[type=text]:focus::-webkit-input-placeholder { color:var(--c4); }
    input[type=text]:focus:-moz-placeholder { color:var(--c4); }
    input[type=text]:focus::-webkit-input-placeholder{ color: var(--c4)!important;}
    input[type=text]:focus::-moz-placeholder{color: var(--c4)!important;}
    input[type=text]:focus:-moz-placeholder{color: var(--c4)!important;}
    textarea:focus::-webkit-input-placeholder { color:var(--c4); }
    textarea:focus:-moz-placeholder { color:var(--c4); }
    textarea:focus::-webkit-input-placeholder{ color: var(--c4)!important;}
    textarea:focus::-moz-placeholder{color: var(--c4)!important;}
    textarea:focus:-moz-placeholder{color: var(--c4)!important;}
    
    input[type=text]::-webkit-input-placeholder {color:#828282}
    input[type=text]:-moz-placeholder {color:#828282}
    input[type=text]::-moz-placeholder {color:#828282}
    input[type=text]:-ms-input-placeholder {color:#828282}
    
    
    hr {
        display: block;
        height: 1px;
        border: 0;
        border-top: 1px solid #ccc;
        margin: 1em 0;
        padding: 0; }     
    
    input[type=checkbox] ~ span {cursor: pointer; font-weight: 400; font-size:1.2em; position: relative;top: -0.1em; color:var(--c4)}
    input[type="checkbox" i] {margin-left: 0; margin-top: 1em; }

/* .wpcf7-not-valid-tip {
            position: relative;
            top: -0.7em;} */


