/* forms */

.standard_form { padding: 10px; border: solid 1px #efefef; border-radius: 1em; }
.standard_form .field_wrapper { display: flex; margin-bottom: .5em; justify-content: space-between; align-items: anchor-center; }
.standard_form label { display: block; font-size: 12px; line-height: 18px; font-weight: 600; text-transform: uppercase; color: #777; }
.standard_form input,
.standard_form textarea,
.standard_form select { padding: 3px 6px !important; font-size: .9em; border: solid 1px #dadada; border-radius: 5px; width: 90%; color: #444; }

.standard_form input,
.standard_form select { width: 65%; }
.standard_form textarea { width: 100%; }

.standard_form .btn { padding: .7em;
    height: 40px !important;
    margin: 0;
    font-size: 14px;
    line-height: normal !important;
    border: 1px solid #ddd;
    color: #666; }

.standard_form .other { display: none; }
.standard_form .company_size { display: none; } /* Honey-pot */

.flex_col { display: flex; flex-direction: column; align-items: baseline !important; }
.space_around { display: flex; justify-content: space-around !important; }
p.required { font-size: 12px; color: #cc0000; }

/* #############  ALERTS ############### */
.alert { position: relative; padding: 0.75rem 1.25rem; margin: 0 0 1em 1em; border: 1px solid transparent; border-radius: 0.25rem; max-width: 1200px; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeeba; }
.alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; }

