/* Bootstrap - Overrides */
.form-group {
    position: relative;

    margin-bottom: 30px;
}
.input-group .input-group-text {
    background: #eff3f4;
    border: none;
}
.form-control {
    border: none;

    font-weight: 500;
}
.form-control:focus {
    background: #dee7e9;
    border: none;
    box-shadow: none;

    color: #637287;

    outline: none;

    transition: 0.5s;
}
.form-control-file {
    display: none;
}

::placeholder {
    color: #778487;
}
.form-control:focus::placeholder {
    color: #637287;
}

label {
    font-weight: 500;

    width: 100%;
}

/* Validation */
.form .required {
    font-size: 18px;
    font-weight: 700;
    color: #b33a45;

    position: absolute;
    right: 2px;
    top: 2px;
}
.form .is-invalid {
    background-image: none;
}
.form .errorMsg {
    position: absolute;

    color: #de3673;
    font-size: 14px;
    text-align: right;

    width: 100%;

    margin: 0;
}
.form .form-alert {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 3px;

    color: #721c24;

    padding: 8px 10px;
}

/* Form - Inputs */
.form-field {
    background: #eff3f4;
    border: none;
    border-radius: 4px;

    padding: 0 15px;

    height: 52px;

    transition: 0.5s;
}

/* Form - Text */
.form-text {
    background: #eff3f4;
    border: none;
    border-radius: 4px;

    padding: 15px;

    height: 125px;

    transition: 0.5s;
}

/* Form - Checkbox */
.checkbox-wrapper {
    position: relative;
    top: 4px;

    display: block;
    padding-left: 30px;
    margin: 0 10px 18px 0;

    width: auto;
    height: auto;

    user-select: none;
    cursor: pointer;
}
    .checkbox-wrapper .label {
        display: inline-block;
        padding-top: 2px;
    }
    .checkbox-wrapper input {
        position: absolute;

        opacity: 0;

        cursor: pointer;

        height: 0;
        width: 0;
    }

.checkmark {
    background-color: #f3f3f3;
    border-radius: 4px;

    position: absolute;
    top: 5px;
    left: 0;

    height: 20px;
    width: 20px;

    transition: 0.1s;
}
    .checkbox-wrapper:hover input ~ .checkmark {
        background-color: #44AC8E;

        transition: 0.1s;
    }
    .checkbox-wrapper input:checked ~ .checkmark {
        background-color: #44AC8E;
    }
    .checkbox-wrapper input:checked ~ .checkmark:after {
        display: block;
    }
    .checkbox-wrapper .checkmark:after {
        content: "\f00c";

        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 14px;
        color: #fff;

        position: absolute;
        display: none;

        left: 4px;
        top: 0px;
    }
