body {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    background: #f8f9fd;
    color: gray;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #6807f9;
}

a:hover,
a:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    line-height: 1.5;
    font-weight: 400;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
}

.bg-primary {
    background: #6807f9 !important;
}

.ftco-section {
    padding: 1em 0;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.img {
    background-size: initial;
    background-repeat: no-repeat;
    background-position: left top;
    /*center center;*/
}

.wrap {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}

.text-wrap,
.login-wrap {
    width: 100%;
}

.text-wrap {
    width: 100%;
    position: relative;
    z-index: 0;
}

.text-wrap:after {
    /*background: #ff00ff;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .4;
    z-index: -1;
}

@media (min-width: 992px) {
    .text-wrap {
        width: 40%;
    }
}

@media (min-width: 992px) {
    .login-wrap {
        width: 60%;
    }
}

.text-wrap .text {
    color: rgba(255, 255, 255, 0.8);
}

.text-wrap .text h2 {
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.login-wrap {
    position: relative;
    background: #fff;
}

.login-wrap h3 {
    font-weight: 700;
    font-size: 18px;
}

.login-wrap h3 span {
    font-size: 16px;
    display: block;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0;
}

.form-control {
    height: 50px;
    background: rgba(0, 0, 0, 0.03);
    color: #000;
    font-size: 16px;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.9) !important;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.9) !important;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.9) !important;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.9) !important;
}

.form-control:focus,
.form-control:active {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #6807f9;
    background: rgba(0, 0, 0, 0.05);
}

textarea.form-control {
    height: inherit !important;
}


.checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 400 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: capitalize !important;
    letter-spacing: 0 !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

/* Hide the browser's default checkbox */
.checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "\f0c8";
    font-family: "FontAwesome";
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    font-size: 20px;
    margin-top: -4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .checkmark:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

/* Show the checkmark when checked */
.checkbox-wrap input:checked~.checkmark:after {
    display: block;
    content: "\f14a";
    font-family: "FontAwesome";
    color: rgba(0, 0, 0, 0.2);
}

/* Style the checkmark/indicator */
.checkbox-primary {
    color: #0d6efd;
}

.checkbox-primary input:checked~.checkmark:after {
    color: #0d6efd;
}

.custom-counter {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.custom-counter li {
    counter-increment: step-counter;
    margin-bottom: 15px;
}

.custom-counter li::before {
    content: counter(step-counter);
    margin-right: 15px;
    font-size: 120%;
    background-color: #ff00ff;
    color: white;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 15px;
}

.biglogoimg {
    /* top, transparent red */

    background-image:

        linear-gradient(rgba(80, 80, 80, 0.65),
            rgba(80, 80, 80, 0.65)),
        /* your image */
        url(../images/supply-service.jpg);
    background-size: 300%;
    background-repeat: no-repeat;
    background-position: center top;
}


.my-error-class {
    color: #FF0000;
    /* red */
}

.my-valid-class {
    color: #00CC00;
    /* green */
}

