
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
    /* base primary colors Biossmann*/
    --gray: #53565a;
    --cool-gray: #8a8e93;
    --orange: #ff8200;
    --white: #ffffff;
    /* secondary colors */
    --gray-secondary: #eaeaeb;
    --green: #c4d600;
    --cyan: #74d1ea;
    --purple: #bb29bb;
    --blue: #10069f;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

body {
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    background-color: #fff;
    overflow-x: hidden;
}

body, input, select {
    color: #555;
    font: inherit;
}

article,
aside,
details,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-decoration: none;
}

h1, h2, h3, h4 {
    color: var(--orange);
    font-weight: 900;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5, h6 {
    color: var(--gray);
}

h5 {
    font-size: 18px;
    font-weight: 900;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px;
}

img {
    border: none;
}

*:focus {
    outline: none;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.parent {
    background-color: var(--gray);
}

.bg-illustration {
    position: relative;
    height: 100vh;
    width: 1194px;
    background: url("images/background-image.jpg") no-repeat center center scroll;
    background-size: cover;
    float: left;
    -webkit-animation: bgslide 2.3s forwards;
    animation: bgslide 2.3s forwards;
}

    .bg-illustration img {
        width: 248px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        height: auto;
        margin: 19px 0 0 25px;
    }

@-webkit-keyframes bgslide {
    from {
        left: -100%;
        width: 0;
        opacity: 0;
    }

    to {
        left: 0;
        width: 1194px;
        opacity: 1;
    }
}

@keyframes bgslide {
    from {
        left: -100%;
        width: 0;
        opacity: 0;
    }

    to {
        left: 0;
        width: 1194px;
        opacity: 1;
    }
}


.login {
    /* margin-top: 100px; */
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    height: 100vh;
    justify-content: center;
    align-items: center;
    /* max-height: 100vh;
  overflow-Y: auto;
  float: left;
  margin: 0 auto;
  width: calc(100% - 1194px); */
}

.logo__login {
    width: 100%;
    display: flex;
    justify-content: center;
    /* height: 80vh; */
    position: relative;
    top: auto;
    left: 0;
    bottom: 5em;
    right: 0;
}

.login .container {
    margin-top: -20px !important;
    width: 505px;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

    .login .container h1 {
        margin-top: 1rem;
        font-size: 35px;
        /* font-weight: bolder; */
        margin-bottom: 3rem;
        /* margin-top: 100px;
  font-size: 35px;
  font-weight: bolder; */
    }

    .login .container .login-form label {
        margin-bottom: 0.25rem;
        /* margin-top: 112px; */
    }

        .login .container .login-form label h6 {
            color: var(--white);
        }

    .login .container .login-form form {
        display: -ms-grid;
        display: grid;
    }

        .login .container .login-form form input {
            padding: 15px 12px 15px 12px;
            border: 1px solid lightgrey;
            border-radius: 2px;
            margin-bottom: 1.5rem;
            margin-top: 2px;
            width: 100%;
            box-sizing: border-box;
            color: #2C3E50;
            font-size: 14px;
            letter-spacing: 1px;
            /* font-size: 16px;
  font-weight: normal;
  background: rgba(57, 57, 57, 0.07);
  margin: 12.5px 0;
  height: 68px;
  border: none;
  padding: 0 30px;
  border-radius: 10px; */
        }

            .login .container .login-form form input:focus, textarea:focus {
                -moz-box-shadow: none !important;
                -webkit-box-shadow: none !important;
                box-shadow: none !important;
                border-bottom: 2px solid var(--orange);
                outline-width: 0;
            }

button[type="submit"],
button[type="button"],
input[type="submit"],
input[type="button"] {
    cursor: pointer;
    text-transform: capitalize;
    text-decoration: none;
    outline: none;
    border-width: 2px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 1.1em;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.675rem 0.75rem;
    /* padding: 0.375rem 0.75rem;   */
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

button[type="submit"],
button[type="button"],
input[type="submit"],
input[type="button"] {
    color: var(--orange);
    background-color: transparent;
    border-color: var(--orange) !important;
    max-width: 100%;
    /*margin-top: 3rem;*/
}

    button[type="submit"]:hover,
    button[type="button"]:hover,
    input[type="submit"]:hover,
    input[type="button"]:hover {
        color: #fff;
        background-color: var(--orange);
        border-color: var(--orange);
    }
/* loader in button */
.btn__text {
    transition: all 0.2s;
}

.button--loading .btn__text {
    visibility: hidden;
    opacity: 0;
}

.button--loading::after {
    content: "";
    position: absolute;
    /* width: 16px; */
    /* height: 16px; */
    /* top: 0; */
    left: 50%;
    /* right: 0; */
    /*bottom: 8%;*/
    /* margin: auto; */
    /* border: 4px solid transparent; */
    /* border-top-color: #ffffff; */
    /* border-radius: 50%; */
    animation: button-loading-spinner 1s ease infinite;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    /* -webkit-animation: spinner-border .75s linear infinite; */
    /* animation: spinner-border .75s linear infinite; */
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
/* fin loader */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.login .container .remember-form {
    position: relative;
    margin-top: -30px;
}

    .login .container .remember-form input[type=checkbox] {
        margin-top: 9px;
    }

    .login .container .remember-form span {
        font-size: 18px;
        font-weight: normal;
        position: absolute;
        top: 32px;
        color: #3B3B3B;
        margin-left: 15px;
    }

.login .container .forget-pass {
    /*position: absolute;
  right: 0;
  margin-top: 189px;*/
    display: flex;
    justify-content: center;
    height: 30%;
    align-items: center;
}

    .login .container .forget-pass a {
        font-size: 16px;
        position: relative;
        font-weight: normal;
        color: var(--gray-secondary);
        text-decoration: none;
    }

        .login .container .forget-pass a::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 100%;
            border-radius: 100px;
            background: -webkit-linear-gradient(110deg, var(--orange) 0%, #fdd6bd 100%);
            background: -o-linear-gradient(110deg, var(--orange) 0%, #fdd6bd 100%);
            background: linear-gradient(-20deg, var(--orange) 0%, #fdd6bd 100%);
            bottom: -4px;
            left: 0;
            -webkit-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            opacity: 0;
            right: 0;
        }

        .login .container .forget-pass a:hover::after {
            opacity: 1;
        }

@media only screen and (min-width: 1024px) and (max-width: 1680px) {
    .bg-illustration {
        width: 50%;
        -webkit-animation: none;
        animation: none;
    }

    .login {
        width: 50%;
    }
}
/* Display 12", iPad PRO Portrait, iPad landscape */
@media only screen and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    @-webkit-keyframes slideIn {
        from {
            left: -100%;
            opacity: 0;
        }

        to {
            left: 0;
            opacity: 1;
        }
    }

    @keyframes slideIn {
        from {
            left: -100%;
            opacity: 0;
        }

        to {
            left: 0;
            opacity: 1;
        }
    }

    .bg-illustration {
        display: none;
        float: none;
        background: url("/miniapplf/Statics/images/background-image.jpg") center center;
        background-size: cover;
        -webkit-animation: slideIn 0.8s ease-in-out forwards;
        animation: slideIn 0.8s ease-in-out forwards;
        width: 100%;
        height: 190px;
        text-align: center;
    }

        .bg-illustration img {
            width: 100px;
            height: auto;
            margin: 20px auto !important;
            text-align: center;
        }

        .bg-illustration .burger-btn {
            left: 33px;
            top: 29px;
            display: block;
            position: absolute;
        }

            .bg-illustration .burger-btn span {
                display: block;
                height: 4px;
                margin: 6px;
                background-color: #fff;
            }

                .bg-illustration .burger-btn span:nth-child(1) {
                    width: 37px;
                }

                .bg-illustration .burger-btn span:nth-child(2) {
                    width: 28px;
                }

                .bg-illustration .burger-btn span:nth-child(3) {
                    width: 20px;
                }

    .login {
        float: none;
        margin: 0 auto;
        width: 100%;
    }

        .login .container {
            -webkit-animation: slideIn 0.8s ease-in-out forwards;
            animation: slideIn 0.8s ease-in-out forwards;
            width: 85%;
            float: none;
        }

            .login .container h1 {
                /* font-size: 28px; */
                margin-top: 0;
                margin-bottom: 0;
            }

    .alert {
        margin-top: 1.5rem;
    }

    .login .container .login-form {
        margin-top: 3rem;
    }

        .login .container .login-form form input {
            height: 45px;
        }

        .login .container .login-form form button[type=submit] {
            height: 45px;
            /*margin-top: 100px;*/
        }

        .login .container .login-form .remember-form {
            position: relative;
            margin-top: -14px;
        }

            .login .container .login-form .remember-form span {
                font-size: 16px;
                margin-top: 22px;
                top: inherit;
            }

    .forget-pass {
        position: absolute;
        right: inherit;
        left: 0;
        bottom: -40px;
        margin: 0 !important;
    }

        .forget-pass a {
            font-size: 16px;
            position: relative;
            font-weight: normal;
            color: #918F8F;
        }

            .forget-pass a::after {
                content: "";
                position: absolute;
                height: 2px;
                width: 100%;
                border-radius: 100px;
                background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                background: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
                bottom: -4px;
                left: 0;
                -webkit-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s;
                opacity: 0;
                right: 0;
            }

            .forget-pass a:hover::after {
                opacity: 1;
            }

    .button--loading::after {
        bottom: 3%;
        left: 50%;
    }

    .login .container .forget-pass {
        height: auto;
        width: 100%;
    }
}
