﻿@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    background: white;
}

.wave {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60vh;
    z-index: -1;
}

.wave-2 {
    position: fixed;
    top: 0;
    right: 0;
    height: 60vh;
    z-index: -1;
    transform: rotate(180deg);
}

.container {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 7rem;
    padding: 0 2rem;
}

.logo {
    max-height: 150px;
    object-fit: contain;
}


.login-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

form {
    width: 360px;
}

.login-content .input-div {
    position: relative;
    display: grid;
    grid-template-columns: 7% 86% 7%;
    margin: 5px 0;
    padding: 5px 0;
    border-bottom: 2px solid #23254c;
}

    .login-content .input-div.one {
        margin-top: 0;
    }

.i {
    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: #23254c;
        font-size: 18px;
        transition: .3s;
    }

.input-div:before, .input-div:after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #D40416;
    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: -10px;
    font-size: 15px;
}

.input-div.focus > .i:first-child > i {
    color: #D40416;
}

.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;
    color: #2d2e4f;
}

.input-div.pass {
    margin-bottom: 4px;
}

a {
    display: block;
    text-align: right;
    text-decoration: none;
    font-weight: 600;
    color: #2d2e4f;
    font-size: 0.9rem;
    transition: .3s;
    padding: 10px;
}

    a:hover {
        color: #1eadc7;
    }

.btn {
    display: block;
    width: 100%;
    height: 35px;
    border-radius: 25px;
    padding:10px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #ff0000, #D40416, #D40416);
    background-size: 200%;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 8px 8px rgba(0,0,0,0.22);
}

    .btn:hover {
        background-position: right;
    }

.title-img {
    margin: 27px 0 10px 0;
    box-shadow: 0 9px 15px rgba(0,0,0,0.25), 0 8px 8px rgba(0,0,0,0.22);
    padding: 5px;
    max-height: 35px;
    border-radius: 5px;
    object-fit: contain;
    width: 100%;
    position: relative;
    background: #2d2e4f;
}

.administration-area {
    box-shadow: 0 9px 15px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    padding: 5px;
    margin-bottom: 35px;
    font-size:medium;
    max-height: 35px;
    border-radius: 5px;
    object-fit: contain;
    width: 100%;
    position: relative;
    background: #2d2e4f;
    color:white;
}


@media screen and (max-width: 1050px) {
    .container {
        grid-gap: 5rem;
    }
}

@media screen and (max-width: 1000px) {
    form {
        width: 290px;
    }

    .img img {
        width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }

    .wave, .wave-2 {
        height: 15vh;
    }

    .login-content {
        justify-content: center;
    }
    .btn {
        font-size:0.8rem;
    }
}

.alert {
    display: block;
    font-size: smaller;
    background-color: #f8d7da;
    border-color: #D40416;
    position: relative;
    padding: .2rem .5rem;
    border: 1px solid #ff000045;
    border-radius: .25rem;
    margin-bottom: 15px;
}


.info-code {
    display: block;
    text-align: center;
    font-size: smaller;
    background-color: #b9f8dc;
    border-color: #b9f8dc;
    position: relative;
    margin-top: 10px;
    padding: .2rem .5rem;
    border: 1px solid #ff000045;
    border-radius: .25rem;
    margin-bottom: 15px;
}

.i.pass:hover {
    color: #1eadc7;
}

.ui-widget-overlay {
    opacity: 0.3;
}

.ui-dialog {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}



/*password recover form*/

.validation-container {
    margin-bottom: 25px;
}

.btn:disabled {
    background-image: linear-gradient(to right, #e0c7c7, #d6a3a7, #D40416);
}

    .btn:disabled:hover {
        background-position: left;
    }

ul {
    text-align-last: left;
    padding: 0;
    margin: 3em 0 0 0;
    list-style: none;
}

li {
    color: #808080;
    font-size: 1rem;
    height: 20px;
    line-height: 20px;
    margin: 0 0 0.8em 0;
    padding: 0 0 0 40px;
    /*background: url(tick-grey.svg) 10px 1px no-repeat;*/
    position: relative;
    -webkit-transition: color 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -moz-transition: color 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -ms-transition: color 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: color 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: color 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-backface-visibility: visible;
}

    li:before {
        opacity: 1;
        text-shadow: none;
        content: "\f00c";
        position: absolute;
        left: -25px;
        width: 20px;
        height: 20px;
        /*background: url(tick-green.svg) 0 1px no-repeat;*/
        position: relative;
        display: inline-block;
        font-family: 'FontAwesome';
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        color: darken($brand-bg,15%);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transition: -webkit-transform 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 100ms ease-out;
        -moz-transition: -moz-transform 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 100ms ease-out;
        -ms-transition: -ms-transform 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 100ms ease-out;
        -o-transition: -o-transform 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 100ms ease-out;
        transition: transform 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 100ms ease-out;
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-backface-visibility: hidden;
    }

    li.complete {
        color: #2d2e4f;
    }

        li.complete:before {
            opacity: 1;
            color: #D0DD2B;
            text-shadow: 0px 0px 2px rgba(0,0,0,0.4);
            -webkit-transform: scale(1.6);
            -moz-transform: scale(1.6);
            -ms-transform: scale(1.6);
            -o-transform: scale(1.6);
            transform: scale(1.6);
        }




