/**
 * ----------------------------------------------------------------------------------------
 * FORM STYLING
 * ----------------------------------------------------------------------------------------
 */

.form-inline {
	display: -webkit-flex;
}
.form-control {
    font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
    background-color: var(--white);
    background-clip: border-box;
    color: var(--grey);
    line-height: 1rem !important;
    height: auto;
    padding: 0.6rem 1.2rem;
    transition: border-color 0.25s ease 0s;
    border: 1px solid transparent !important;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
}
.form-control:hover,
.form-control:focus {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
	border-color: var(--primary) !important;
}
.form-control:-webkit-input-placeholder {
    font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
}
.form-control-label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0.357em;
    padding: 0;
}
.form-control,
form .btn {
    min-height: 48px;
}
.form-control:focus {
    box-shadow: none;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group:focus {
	outline: none;
}
form .row {
    margin-left: -0.6rem;
    margin-right: -0.6rem;
}
form .row [class*=col] {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}
form .mbr-section-btn {
    margin: 0;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}
form .btn {
    display: flex;
    padding: 0.6rem 1.2rem;
    margin: 0;
}
.btn-form:hover {
	cursor: pointer;
}
form .form-check-input {
    margin-top: 0.5;
}
input:-webkit-autofill, 
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    transition-delay: 9999s;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
}
[type=submit] {
	-webkit-appearance: none;
}
textarea.form-control {
    line-height: 1.5rem !important;
}
