body {
    font-family: "Lato", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    background: #fff;
    color: gray;
}

h1,h2,h3,h4,h5,h6 {
    color: #000;
}

.ftco-section {
    padding: 4em 0;
}

.heading-section {
    font-size: 32px;
    color: #A020F0;
    font-weight: 700;
}

.wrap {
    width: 100%;
    overflow: hidden;
    background: #f8f9fd;
    border-radius: 5px;
    box-shadow: 0px 10px 34px -15px rgb(0 0 0 / 24%);
}

.login-image, .login-wrap {
    width: 50%;
}

.login-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.login-wrap {
    position: relative;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    font-weight: 700;
}

.form-control {
    height: 48px;
    background: #fff;
    color: #000;
    font-size: 16px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.form-control:focus, .form-control:active {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #A020F0;
}

.btn.btn-primary {
    background: #A020F0 !important;
    border: 1px solid #A020F0 !important;
    color: #fff !important;
}

.wrap-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #A020F0 !important;
    font-size: 13px !important;
    text-transform: capitalize !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wrap-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border-radius: 5px;
    background-color: #eee;
}

.wrap-checkbox:hover input ~ .checkmark {
    background-color: #c27af0;
}

.wrap-checkbox input:checked ~ .checkmark {
    background-color: #A020F0;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.wrap-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.wrap-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .login-image {
        display: none;
    }

    .login-image, .login-wrap {
        width: 100%;
    }
}