/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(95,43): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
(152,17): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
(165,21): run-time error CSS1039: Token not allowed after unary operator: '-gral-font-size'
(184,21): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
(194,54): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
(194,86): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
(194,118): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
(267,35): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color-opacity'
(271,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary-dark-bg-color'
 */
:root {
    --gral-font-size: 13px;
    --linkaction-font-size: 14px;
    --titlemaster-font-size: 26px;
    --primary-dark-bg-color: #343a40; /*dark gray*/
    --primary-dark-color: #FFF;
    --secondary-dark-bg-color: #ff8d00; /*orange*/
    --secondary-dark-bg-color-opacity: rgba(255,141,0,.25);
    --primary-dark-color-opacity: rgba(255,255,255,.5);
    --primary-light-color: #000;
    --primary-light-color-opacity: rgba(0,0,0,.3);
    --secondary-dark-color: rgba(255,141,0,.75); /*orange*/
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.wave {
    position: fixed;
    bottom: 0;
    left: -2px;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.container {
    /*width: 100vw;
    height: 100vh;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 7rem;
    padding: 0 1rem;
}

.img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.img img {
    width: 370px; /*500px;*/
}

form {
    width: 360px;
}

.login-content img {
    height: 100px;
    opacity: 0.7;
}

.login-content h2 {
    margin: 15px 0;
    color: #979696;
    text-transform: uppercase;
    font-size: 2.9rem;
}

.login-content .input-div {
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    /*border-bottom: 2px solid #d9d9d9;*/
}

    .login-content .input-div.one {
        margin-top: 0;
    }

    .login-content .input-div input {
        border-bottom: 2px solid #d9d9d9;
    }

        .login-content .input-div input:hover, .login-content .input-div input:focus {
            border-bottom: 2px solid var(--secondary-dark-bg-color) !important;
        }

.i {
    color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .i i {
        transition: .3s;
    }

.input-div > div {
    position: relative;
    height: 45px;
}

    .input-div > div > h5 {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 18px;
        transition: .3s;
    }

/*.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #38d39f;
	transition: .4s;
}*/

.input-div:before {
    right: 50%;
}

.input-div:after {
    left: 50%;
}

.input-div.focus:before, .input-div.focus:after {
    width: 50%;
}

.input-div.focus > div > h5 {
    top: -5px;
    font-size: 15px;
}

.input-div.focus > .i > i {
    color: var(--secondary-dark-bg-color);
}

.input-div > div > input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: var(--gral-font-size);
    color: #555;
    font-family: 'poppins', sans-serif;
}

.input-div.pass {
    margin-bottom: 4px;
}

a {
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
}

    a:hover {
        color: var(--secondary-dark-bg-color);
    }

.btn {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, var(--secondary-dark-bg-color), var(--secondary-dark-bg-color), var(--secondary-dark-bg-color));
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

    .btn:hover {
        background-position: right;
    }


@media screen and (max-width: 1050px) {
    .container {
        grid-gap: 5rem;
    }
}

@media screen and (max-width: 1000px) {
    form {
        width: 290px;
    }

    .login-content h2 {
        font-size: 2.4rem;
        margin: 8px 0;
    }

    .img img {
        width: 325px; /* 400px;*/
    }
}

@media screen and (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }

    .img {
        display: none;
    }

    .wave {
        display: none;
    }

    .login-content {
        justify-content: center;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: inherit;
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: inherit;
    transition: background-color 5000s ease-in-out 0s;
    font-size: inherit;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--secondary-dark-bg-color-opacity);
}

.btn.active, .btn:active {
    background-color: var(--secondary-dark-bg-color) !important;
}

.add-name-menu-login {
    font-weight: bold;
    color: #cccccc;
    margin-top: 5px;
}
