/* _content/Washpower.Manager.Website/Pages/LoginPage.razor.rz.scp.css */

/* BASIC */

html[b-g7pq0p4h64] {
    background-color: #56baed;
}

body[b-g7pq0p4h64] {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

a[b-g7pq0p4h64] {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2[b-g7pq0p4h64] {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper[b-g7pq0p4h64] {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 600px;
    padding: 20px;
}

#formContent[b-g7pq0p4h64] {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    /*-webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);*/
    text-align: center;
}

#formFooter[b-g7pq0p4h64] {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive[b-g7pq0p4h64] {
    color: #cccccc;
}

h2.active[b-g7pq0p4h64] {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button][b-g7pq0p4h64], input[type=submit][b-g7pq0p4h64], input[type=reset][b-g7pq0p4h64] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover[b-g7pq0p4h64], input[type=submit]:hover[b-g7pq0p4h64], input[type=reset]:hover[b-g7pq0p4h64] {
        background-color: #39ace7;
    }

    input[type=button]:active[b-g7pq0p4h64], input[type=submit]:active[b-g7pq0p4h64], input[type=reset]:active[b-g7pq0p4h64] {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text][b-g7pq0p4h64], input[type=password][b-g7pq0p4h64] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus[b-g7pq0p4h64] {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }

    input[type=text][b-g7pq0p4h64]::placeholder {
        color: #cccccc;
    }



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown[b-g7pq0p4h64] {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown-b-g7pq0p4h64;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown-b-g7pq0p4h64 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn-b-g7pq0p4h64 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn[b-g7pq0p4h64] {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn-b-g7pq0p4h64 ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first[b-g7pq0p4h64] {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second[b-g7pq0p4h64] {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third[b-g7pq0p4h64] {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth[b-g7pq0p4h64] {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover[b-g7pq0p4h64]:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover[b-g7pq0p4h64] {
    color: #0d0d0d;
}

    .underlineHover:hover[b-g7pq0p4h64]:after {
        width: 100%;
    }



/* OTHERS */

*:focus[b-g7pq0p4h64] {
    outline: none;
}

#icon[b-g7pq0p4h64] {
    width: 60%;
}
/* _content/Washpower.Manager.Website/Shared/FullScreenLayout.razor.rz.scp.css */
.page[b-jfn5f67ao9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-jfn5f67ao9] {
    flex: 1;
}

.sidebar[b-jfn5f67ao9] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-jfn5f67ao9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}
/*
    .top-row ::deep a, .top-row .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
    }*/

    .top-row a:first-child[b-jfn5f67ao9] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-jfn5f67ao9] {
        display: none;
    }

    .top-row.auth[b-jfn5f67ao9] {
        justify-content: space-between;
    }

    .top-row a[b-jfn5f67ao9], .top-row .btn-link[b-jfn5f67ao9] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-jfn5f67ao9] {
        flex-direction: row;
    }

    .sidebar[b-jfn5f67ao9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-jfn5f67ao9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-jfn5f67ao9], article[b-jfn5f67ao9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/Washpower.Manager.Website/Shared/MainLayout.razor.rz.scp.css */
