@charset "utf-8";
/* CSS Document */

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

    margin-bottom: 30px;
}
.form-control {
    border: none;
}
.form-control:focus {
    background: #f8f8f8;
    border: none !important;
    box-shadow: none !important;
}
.form-control-file {
    display: none;
}

::placeholder {
    color: #959595;
}

label {
    font-size: 16px;
    font-weight: 600;

    width: 100%;

    margin-bottom: 2px;
}

/* Form Validation */
.form .required {
    font-size: 22px;
    font-weight: 700;
    color: #ce4257;

    position: absolute;
    right: 0;
    top: 2px;
}

.form .is-invalid {
    background-image: none;
    border: 1px solid #dee2e6 !important;

    padding-right: 15px;
}

.form .errorMsg {
    position: absolute;

    color: #ce4257;
    font-size: 16px;
    text-align: right;

    width: 100%;

    margin: 0;
}

#totalError {
    font-size: 16px;

    margin-top: -15px;
    margin-bottom: 15px;
}
.imageError div {
    background: #ce4257;
    border-radius: 12px 12px 0 0;

    font-size: 12px;
    color: #fff;

    padding: 5px 10px;

    position: absolute;

    width: 100%;
}
    .imageError.success div {
        background: #44AC8E;
    }

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

    padding: 0 15px;

    width: 100%;
    height: 50px;
}

/* Form - Select */
.form-select {
    background: #fff;
    border: none;
    border-radius: 4px;

    padding: 0 15px;

    width: 100%;

    cursor: pointer;
}

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

    padding: 15px;

    width: 100%;
    height: 125px !important;
}
