.pys-form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.pys-row{
    display: flex;
    width: 100%;
    margin-top: 16px;
}
.pys-col{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.pys-form input{
    width: 100%;
}
.pys-form input, .pys-form textarea, .pys-form select {
    padding: 10px 15px;
    color: #666666;
    background-color: #fafafa;
    border: 1px solid #cccccc;
    border-radius: 0;
    outline: none;
    line-height: 1em;
}

.pys-form input:focus, .pys-form textarea:focus, .pys-form select:focus {
    background-color: #ffffff;
    border-color: #bfbfbf;
}
.required{
    color: red;
}
.pys-form button[type="submit"]{
    font-size: 1em;
    width: auto;
    margin: 0 16px 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 14px 22px;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    color: #ffffff;
    background-color: #7a3f0f;
}