﻿/*Fonts*/
@import url('Fonts/font-awesome.min.css');
@import url('Fonts/lightgallery.css');
@import url('Fonts/linea-icon.css');
@import url('Fonts/linear-icons.css');
@import url('Fonts/material-design-iconic-font.min.css');
@import url('Fonts/pe-icon-7-stroke.css');
@import url('Fonts/pe-icon-7-styles.css');
@import url('Fonts/Roboto.css');
@import url('Fonts/simple-line-icons.css');
@import url('Fonts/themify-icons.css');

* {
    font-size: 12pt !important;
}

body {
    margin: 0px;
    padding: 0px;
    background: url(/Sources/Images/Login/Background_View.jpg);
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    font-size: 10pt;
}

.Content {
    width: 400px;
    height: 420px;
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -210px;
}

.InputContainer {
    background-color: white;
    margin-top: 5px;
    border: 1px solid #DFDFDF;
}

.IconContainer {
    width: 30px;
    padding: 2px 0px 0px 10px;
}

    .IconContainer * {
        font-size: 16pt !important;
    }

/* Effect 1 */
.la-anim-1 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 5px;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    pointer-events: none;
}

    .la-anim-1::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        content: '';
        opacity: 0;
        background: #364150;
        -webkit-transition: opacity 0.2s, box-shadow 2s 4s;
        -moz-transition: opacity 0.2s, box-shadow 2s 4s;
        transition: opacity 0.2s, box-shadow 2s 4s;
        -webkit-transform: rotate(2deg) translateY(-2px);
        -moz-transform: rotate(2deg) translateY(-2px);
        -ms-transform: rotate(2deg) translateY(-2px);
        -o-transform: rotate(2deg) translateY(-2px);
        transform: rotate(2deg) translateY(-2px);
    }

    .la-anim-1.la-animate {
        z-index: 10001;
        background: #364150;
        opacity: 1;
        -webkit-transition: -webkit-transform 5s ease-in, opacity 1s 5s;
        -moz-transition: -moz-transform 5s ease-in, opacity 1s 5s;
        transition: transform 5s ease-in, opacity 1s 5s;
        -webkit-transform: translate3d(0%, 0, 0);
        -moz-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }

        .la-anim-1.la-animate::after {
            opacity: 1;
        }
