/* Minification failed. Returning unminified contents.
(63,23): run-time error CSS1046: Expect comma, found '122'
(63,31): run-time error CSS1046: Expect comma, found '/'
(116,25): run-time error CSS1046: Expect comma, found '199'
(116,33): run-time error CSS1046: Expect comma, found '/'
 */
/* /TXVoYW1tYWQgQXNpbS4uTmV0IERldmVsb3Blcg==/ Devistic Custom CSS for Login Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.4px;
}

html {
    height: 100%;
}

.bg-orange {
    background-color: #F89520;
}

.bg-green {
    background-color: #8CC640;
}

.bg-blue {
    background-color: #337ab7;
}

.txt-green {
    color: #8CC640 !important;
}

.txt-blue {
    color: #337ab7 !important;
}

.txt-grey-1 {
    color: #767676;
}

.cursor-pointer {
    cursor: pointer;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
    -webkit-text-fill-color: #5b5b5b !important;
    padding: 2rem 0rem 0rem 1rem;
}

body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1em;
    line-height: 1.6;
    height: 100%;
}

    body a {
        color: rgb(51 122 183 / 0.90);
        text-decoration: none !important;
        font-size: 13px;
    }

        body a:hover {
            color: #276ba5;
            text-decoration: none;
            font-size: 13px;
        }

    body p {
        font-size: 13px;
    }


    body label {
        color: #666666;
    }

    body button {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.4px;
    }

        body button[disabled] {
            opacity: 0.75;
            cursor: not-allowed;
        }

.text-success {
    color: #42a946;
}

.small-c {
    font-size: 1.2em;
}

.footer-p {
    font-size: 1em;
    font-weight: 500;
    color: #6e6e6e;
    line-height: 1.2em;
    font-family: system-ui;
}

.wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(199 199 199 / 0.14); /*transparent Black Shadow*/
    flex-direction: column;
}

.logo-wrap {
    margin: 0 auto;
    border: none;
    padding: 0rem 1rem 1rem 0rem;
    background: transparent;
    text-align: center;
}

    .logo-wrap img {
        width: 150px;
        margin-bottom: 15px;
    }

.form {
    /* width: 350px; */
    margin: 0 auto;
    /* border: 1px solid #ddd; */
    padding: 2rem;
    background: #ffffff;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 2px 3px 0.5px #00000061;
    transition: ease-in-out 0.2s;
}

/* Style tab links */
.tabs {
    /* width: 100%; */
    /* height: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: end;
    /* background: #00000024; */
    flex-direction: row;
    margin: 0;
    padding: 0;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 0px 3px 0.5px #00000061;
}

.tablink {
    background-color: #e5e5e5;
    color: #afafaf;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 8px;
    font-size: 1.2em;
    font-weight: 600;
    width: 50%;
    transition: ease-in-out 0.2s;
}

    .tablink:hover {
        background-color: white;
    }

    .tablink.active {
        background-color: white;
        color: #F89520;
    }

        .tablink.active:hover {
            background-color: white;
        }


    .tablink:nth-of-type(1) {
        border-radius: 5px 0px 0px 0px;
    }

    .tablink:nth-of-type(2) {
        border-radius: 0px 5px 0px 0px;
    }


/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
    color: white;
    display: none;
    padding: 100px 20px;
    height: 100%;
}

.form-input {
    background: #fafafa;
    border: none;
    border-bottom: 1px solid #b5b5b5;
    padding: 10px;
    width: 100%;
    font-size: 1.4em;
    outline: none;
}

    .form-input:focus {
        background: #fafafa;
        border: none;
        border-bottom: 1px solid #b5b5b5 !important;
        padding: 10px;
        width: 100%;
        font-size: 1.4em;
        outline: none;
    }

.form-group {
    margin-bottom: 1rem;
}

.form-button {
    background: #F89520;
    border: 1px solid #F89520;
    border-radius: 5px;
    color: #ffffff;
    margin-top: 1rem;
    padding: 7px 10px;
    width: 100%;
    text-transform: uppercase;
}

    .form-button:hover {
        background: #ed8a16;
        background: #ed8a16;
    }

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .form-header h4 {
        color: #6a6a6a;
    }

    .form-header hr {
        margin-top: 10px;
    }

.form-footer {
    text-align: center;
}

/* input focus styles */
.text-field {
    position: relative;
    margin: 10px 2.5px 20px 2.5px;
}

input {
    display: inline-block;
    border: none;
    border-bottom: 1px solid #b5b5b5;
    padding: 10px 0px 5px 0px;
    width: 100%;
    font-size: 1.4em;
    color: #5b5b5b;
    font-weight: 400;
    transition: 0.25s;
}

    input:focus {
        border: none;
        border-bottom: 1px solid #b5b5b5 !important;
    }

label {
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: 10px;
    transition: 0.25s;
    font-size: 1.4em;
    font-weight: 500;
}

input:focus ~ label {
    top: -10px;
    left: 0px;
    font-size: 1.2em;
    /*color: #32cd32;*/
    /*background-color: #fff;*/
    /*padding: 0 5px 0 5px;*/
}

input:valid ~ label {
    top: -10px;
    left: 0px;
    font-size: 1.2em;
    /*color: #32cd32;*/
    /*background-color: #fff;*/
    /*padding: 0 5px 0 5px;*/
}

.alert-validate::before {
    right: 0;
}

.alert-validate::after {
    right: 10px;
}

@media (max-width: 375px) {
    .alert-validate::before {
        top: 73%;
    }

    .alert-validate::after {
        top: 73%;
    }
}

