
/* Lighter = #D7D7D7 */
/* Light = #959595 */
/* Dark = #58585A */

/* === Import smart-scrollbar === */

@import "smart-scrollbar.css";

body {
    font-family: "Poppins", sans-serif;
    overflow: auto;
    background: linear-gradient(-45deg, #D94452, #B02B3B, #9E1030, #faf5d3);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    max-height: 900px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

div.hidden {
    display: none;
}

#particles-js {
    width: 100%;
    height: 98%;
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.main-bg {
    z-index: -1;
    position: absolute;
}

main.pb-3, main.py-3 {
     padding-bottom: 0rem !important;
}

.container-login100 {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.wrap-login100 {
    width: 380px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.brand-wrapper {
    margin-bottom: 19px;
    display: flex;
    justify-content: center;
}

    .brand-wrapper > image {
        width: 100%;
        height: auto;
    }

.login-card {
    border-style: solid;
    border-color: #D90942;
    border-width: 1px;
    border-radius: 10px;
    box-shadow: 0 0 25px -15px rgba(0, 0, 0, 1);
    overflow: hidden;
    background-color: #fff;
}

.body-title {
    font-size: 25px;
    color: #830e2b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.body-description {
    font-size: 14px;
    color: #58585A;
    text-align: center;
    margin-top: 20px;
    margin-left: 18px;
    margin-right: 18px;
    margin-bottom: 30px;
}

.profile-icon-wrapper {
    font-size: 60px;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border-style: solid;
    border-color: #D5D5D5;
    border-width: 1px;
    background-color: #EBEBEB;
    margin: 7px auto 18px;
}

#profile-icon {
    color: rgb(213, 213, 213);
    font-size: 1em;
    border-radius: 50%;
    height: 118px;
}



/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

    textarea:focus, input:focus {
        border-color: transparent !important;
    }

        input:focus::-webkit-input-placeholder {
            color: transparent;
        }

        input:focus:-moz-placeholder {
            color: transparent;
        }

        input:focus::-moz-placeholder {
            color: transparent;
        }

        input:focus:-ms-input-placeholder {
            color: transparent;
        }

        textarea:focus::-webkit-input-placeholder {
            color: transparent;
        }

        textarea:focus:-moz-placeholder {
            color: transparent;
        }

        textarea:focus::-moz-placeholder {
            color: transparent;
        }

        textarea:focus:-ms-input-placeholder {
            color: transparent;
        }

input::-webkit-input-placeholder {
    color: #959595;
}

input:-moz-placeholder {
    color: #fff;
}

input::-moz-placeholder {
    color: #fff;
}

input:-ms-input-placeholder {
    color: #fff;
}

textarea::-webkit-input-placeholder {
    color: #fff;
}

textarea:-moz-placeholder {
    color: #fff;
}

textarea::-moz-placeholder {
    color: #fff;
}

textarea:-ms-input-placeholder {
    color: #fff;
}

label {
    margin: 0;
    display: block;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 90%;
    position: relative;
    border-bottom: 1px solid #D7D7D7;
    margin: 0 auto 20px;
}

.input100 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 100;
    color: #58585A;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
}

/*---------------------------------------------*/
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

    .focus-input100::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        background: #58585A;
        color: #fff;
    }

    .focus-input100::after {
        font-family: FontAwesome;
        font-size: 16px;
        color: #959595;
        content: attr(data-placeholder);
        display: block;
        width: 100%;
        position: absolute;
        top: 10px;
        left: 0px;
        padding-left: 5px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

.input100:focus {
    padding-left: 5px;
}

    .input100:focus + .focus-input100::after {
        top: -16px;
        font-size: 18px;
    }

    .input100:focus + .focus-input100::before {
        width: 100%;
    }

.has-val.input100 + .focus-input100::after {
    top: -16px;
    font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
    width: 100%;
}

.has-val.input100 {
    padding-left: 5px;
}

/*==================================================================
[ Restyle Checkbox ]*/

.contact100-form-checkbox {
    padding-left: 5px;
}

.input-checkbox100 {
    display: none;
}

.label-checkbox100 {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #959595;
    line-height: 1.2;
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

    .label-checkbox100::before {
        content: "\f00c";
        font-family: FontAwesome;
        font-size: 13px;
        color: transparent;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 18px;
        height: 18px;
        border-radius: 2px;
        border-width: 2px;
        border-color: #959595;
        border-style: solid;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.input-checkbox100:checked + .label-checkbox100::before {
    color: #555555;
}

.input-group {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.login-card .login-btn {
    height: 50px;
    width: 140px;
    border-radius: 4px;
    font-size: 17px;
    color: #830e2b;
    border: 1px solid #830e2b;
}

    .login-card .login-btn:hover {
        border: 1px solid #830e2b;
        background-color: #830e2b;
        color: #fff;
    }

.login-card .forgot-password-link,
.login-card .different-account-link {
    font-size: 13px;
    color: #959595;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
    .wrap-login100 {
        padding: 0 0 0 0;
    }

    .login-card {
        padding: 0 0 0 0;
    }
}


/*-------------------------------------------------------------------
[ Validation ]*/
.text-danger > ul > li {
    font-size: 13px;
}


.k-grid-container {
    border: 1px solid rgba(0,0,0,.16);
    border-left: 0px;
    border-radius: 3px;
}

.btn-has-spinner.active {
    cursor: progress;
}

    .btn-has-spinner.active .spinner {
        opacity: 1;
        width: auto;
    }

        .btn-has-spinner.active .spinner .fa-spinner {
            margin: 0px 5px 0px 0px;
        }
