/*
Theme Name: My Twenty Twenty Child Theme
Theme URI: https://example.com
Description: A child theme for Twenty Twenty.
Author: Your Name
Author URI: https://example.com/
Template: twentytwenty
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

a {
	color: #d8a462 !important;
}

.form.hide,
#form-successful.hide{
    display: none;
}

#form-successful h1,
#form-successful p {
    color: #fff;
}

.form-heading {
    color: #fff;
    font-size: 1.3em;
}

.form-check {
    padding-left: 0 !important;
    color: #B2AEBC;
}

.form-wrapper {
    max-width: 80%;
    min-width: 600px;
    padding: 50px 30px 50px 30px;
    margin: 50px auto;   
    background-color: #36343A;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07);
  }

.row {
    justify-content:space-between;
}

.form-group {
    position:relative;  
    margin-top: 17px;
    width: 100%;
}

.form-group__email{
    width: 60%;
}

.form-group__phone{
    width: 30%;
}

/* .form-group + .form-group{
    margin-top: 30px;
} */

.form-group span {
    font-size: 12px;
    color: #de6262;
}

.form-label {
    position: absolute;
    left: 16px;
    top: 17px;
    font-size: 13px;
    color: #8E8D91;
    background-color: #58555C;
    z-index: 10;
    transition: transform 150ms ease-out,  font-size 150ms ease-out;
}

.form-input {
    position: relative;
    padding: 23px 0 9px 16px !important;
    outline: 0;
    border: none !important;
    background-color: #58555C !important; 
    caret-color: #fff;
    color: #fff;
    font-size: 13px !important;
    font-weight: bold;
    border-radius: 2;
    transition: box-shadow 150ms ease-out;
}

input.form-input {
    height: 50px;
}

.form-input:focus {
    /* border: 2px solid #d8a462 !important; */
    box-shadow: inset 0 0 0 2px #d8a462;
}

.focused .form-label {
    transform: translateY(-75%);
    font-size: 10px;
}

.form-input.filled {
    box-shadow: 0 2px 0 0 lightgreen;
}
  
input[type="checkbox"] {
    width: 18px;
	min-width: 18px;
	height: 18px;
    border-radius: 2px;
    border: 2px solid #d8a462;
    background: #36343A;
}

input[type="checkbox"]:checked {
    background-color: #d8a462;
}

input[type="checkbox"]:focus {
    outline: 0;
}