﻿html.LoginPage {
    /*background-color: #a4c4e0;*/
    background-color: #d9e5f3;
    /*background-color: #88a2c6;*/
}


body.LoginPage {
    font-family: "Poppins", sans-serif;
    height: 100vh;
    /*overflow: hidden;*/
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /*centers items on the line (the x-axis by default)*/
    align-items: center; /*centers items on the cross-axis (y by default)*/
}


#formFooter.LoginPage {
    /*background-color: #87a1c4;*/
    color: #098DDF;
    /*border-top: 1px solid #dce8f1;*/
    padding: 5px 5px 10px 5px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    font-weight: bold;
}

    #formFooter.LoginPage a {
        /*color: brown;*/
        color: #098DDF;
    }



input[type=button].LoginPage, input[type=submit].LoginPage, input[type=reset].LoginPage {
    /*background-color: #56baed;*/
    /*color: white;*/
    -webkit-box-shadow: 0 10px 30px 0 #92badd;
    box-shadow: 0 10px 30px 0 #92badd;
    color: white;
    background-color: #019EE3;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}


    input[type=button].LoginPage:hover, input[type=submit].LoginPage:hover, input[type=reset].LoginPage:hover {
        background-color: #037db3;
    }

.LoginPage.Input {
    border: solid;
    border-width: 1px;
    border-color: #019EE3;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}










a.LoginPage {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}



/* STRUCTURE */

.LoginPage.Wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    /*padding: 20px;*/
}

.LoginPage.PasswordIcon {
    cursor: pointer;
}

#formContent.LoginPage {
    -webkit-border-radius: 0px 15px 15px 0px;
    border-radius: 0px 15px 15px 0px;
    background: #fff;
    /*padding: 30px;*/
    width: 424px;
    height: 480px;
    /*max-width: 424px;*/
    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;
}

#formImage.LoginPage {
    width: 426px;
    height: 480px;
    background-repeat: no-repeat;
    -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);
    background-color: transparent;
    -webkit-border-radius: 37px 0px 0px 37px;
    border-radius: 40px 0px 0px 40px;
}


#acptLogin_IMGD {
    border-color: #019EE3 !important;
    background-color: #d9e5f3 !important;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

#acptLogin_TB {
    border: solid;
    border-width: 1px;
    border-color: #019EE3;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}

#acptLogin_TB_I {
    font-family: Tahoma !important;
    font-weight:600 !important;
    font-size: 15px;
    text-align: center;
    height: 20px;
}



.LoginPage.Flex-Container {
    display: flex;
    flex-wrap: nowrap;
    background-color: transparent;
}



select.LoginPage, input[type=text].LoginPage, input[type=password].LoginPage {
    width: 85%;
    border: none;
    color: #0d0d0d;
    margin: 5px;
    text-align: center;
    margin: 0px;
    border: none;
    font-size: 16px;
    display: inline-block;
}


    input[type=text].LoginPage:placeholder {
        color: #cccccc;
    }



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.LoginPage.FadeInDown {
    -webkit-animation-name: FadeInDown;
    animation-name: FadeInDown;
    -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 {
    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 */

.LoginPage.FadeIn {
    opacity: 0;
    -webkit-animation: FadeIn ease-in 1;
    -moz-animation: FadeIn ease-in 1;
    animation: FadeIn 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;
}

    .LoginPage.FadeIn.First {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .LoginPage.FadeIn.Second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .LoginPage.FadeIn.Third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .LoginPage.FadeIn.Fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

    .LoginPage.FadeIn.Fifth {
        -webkit-animation-delay: 1.2s;
        -moz-animation-delay: 1.2s;
        animation-delay: 1.2s;
    }


@-webkit-keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}





/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }



/* OTHERS */

*.LoginPage:focus {
    outline: none;
}


@media only screen and (max-width: 900px) {


    #formImage.LoginPage {
        display: none;
    }

    #formContent.LoginPage {
        -webkit-border-radius: 15px 15px 15px 15px;
        border-radius: 15px 15px 15px 15px;
        background: #fff;
        /*padding: 30px;*/
        width: 350px;
        height: 480px;
        /*max-width: 424px;*/
        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;
    }

}