
/* Login Page Start */

.login-container {
	height: 100%;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	padding:0;
}
.bodyLogin {
	padding:0;
}
.login-bg {
	width: 50%;
	background-color: #eeeeee;
	background: url(../Images/Company/bg_tpl.png) no-repeat left top;
	-webkit-background-size: cover;
	/* For WebKit*/
	-moz-background-size: cover;
	/* Mozilla*/
	-o-background-size: cover;
	/* Opera*/
	background-size: cover;
}
.login-form {
	display: flex;
	flex-direction: column;
	min-height: 100%;
			
	width: 50%;
	position: relative;
	background-color: #fff;
}
.login-form section {
	width: 100%;
	margin: 0 20px;
}
.login-form section h1 {
    margin: 0 0 40px 10px;
    color: #f27021;
}
.login-form > form{
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rememberme{
	margin-top: 5px;
}
.rememberme label {
    font-weight: normal;
}
.rememberme .icheckbox_square-green{
	vertical-align: top;
    display: inline-block;
}
.registered{
    padding-top: 25px;
    padding-bottom: 15px;
    overflow:auto;
}
.login-form footer{
	padding: 10px 80px;
}
.login-fields div[class^="row"],
.login-fields div[class*="row"] {
	padding: 0;
	margin:0;
}
.login-form footer .copyright{
	text-align: center;
	padding-top: 6px;
}

.login-area {
	position: absolute;
	width: 296px;
	margin: -138px 0 0 -148px;
	top: 40%;
	left: 50%;
}

.login-msg {
	color: #8a8c8f;
	text-align: center;
	margin: 20px 0;
}
		
.btn {
	border-radius: 0;
}

.btn-life {
    background-color: #858b91;
    border: 1px solid #858b91;
    color: #fff !important;
}
.btn-life:hover {
    background-color: #f27021;
    border: 1px solid #f27021;
}

.login-fields #btRefresh {
	margin-left: 10px;
}
.btn.active,.btn:active{
	background-image:none;
	outline:0;
	-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);
	box-shadow:inset 0 3px 5px rgba(0,0,0,.125)
}

.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    box-shadow: none;
}

.login-fields input.form-control {
	color: #858383;
	height: 40px;
	background-color: #fff;
	border: 0 !important;
	margin-bottom: 10px;
	border-radius: 0;
	box-shadow: unset;
	border-bottom: 1px solid #dedede!important;
	padding-left: 0;
}
.login-fields input:focus {
	box-shadow: unset;
}
.login-fields a,
.login-fields {
	color:#858b91;
}
.login-fields a:hover,
.login-fields a:active,
.login-fields a:focus{
	color:#6b6f74;
}

.login-buttons button:last-child {
	margin-left: 7px;
}

.change-pin a {
	color: #af1e23;
	text-decoration: none;
	display: inline-block;
	padding: 7px 4px 7px 0;
}

.change-pin a:hover {
	color: #af1e23;
}

.login-button {
	background-color: #ba2c2c;
	padding: 7px 10px 7px 10px;
	border: 0;
	color: #fff;
	font-size: 11px;
	transition: background-color .5s ease-out;
	border-radius: 0;
}

.login-button:hover {
	background-color: #e74646;
}
/* Login Page End */

/*** Edited by MA ***/
.welcome-page{
    display:none;
}
.welcome-page.active {
    display:block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1;
    animation: moveTop 2s 6s forwards;
}

.content {
    user-select: none;
    color: green;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 5vw;
    font-family: 'verdana';
    font-weight: bold;
    letter-spacing: 20px;
    opacity: 0;
    animation: opacity 2s 2s forwards 1 ease-in-out;
    position: relative;
}

    .content p {
        position: relative;
        width: 80%;
        text-align: center;
        opacity: 1;
        text-shadow: 10px 0px 2px rgba(0, 128, 0, 0.8);
        animation: textShadow 3s 4s alternate infinite;
    }

        .content p:before {
            content: attr(data-shadow);
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, 0) scale(2);
            filter: blur(4px);
            opacity: 0;
            animation: rightToLeft 3s 3s forwards 1 ease-in-out;
        }

    .content span {
        animation: backToPosition 2s 2s forwards 1 ease-in-out;
        position: relative;
        color: transparent;
    }

        .content span:before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 5%;
            width: 90%;
            height: 5px;
            background: green;
            opacity: 0;
            filter: blur(0px);
            animation: opacity 1s 5s alternate infinite;
        }

        .content span:nth-of-type(1) {
            top: -70px;
            left: -40px;
        }

        .content span:nth-of-type(2) {
            top: 20px;
            left: -50px;
        }

            .content span:nth-of-type(2):before {
                animation: opacity 1s 5.25s alternate infinite;
            }

        .content span:nth-of-type(3) {
            top: -50px;
            left: 0px;
        }

            .content span:nth-of-type(3):before {
                animation: opacity 1s 5.5s alternate infinite;
            }

        .content span:nth-of-type(4) {
            top: -90px;
            left: -40px;
        }

            .content span:nth-of-type(4):before {
                animation: opacity 1s 5.75s alternate infinite;
            }

        .content span:nth-of-type(5) {
            top: 100px;
            left: -10px;
        }

            .content span:nth-of-type(5):before {
                animation: opacity 1s 6s alternate infinite;
            }

        .content span:nth-of-type(6) {
            top: -60px;
            left: 20px;
        }

            .content span:nth-of-type(6):before {
                animation: opacity 1s 6.25s alternate infinite;
            }

        .content span:nth-of-type(7) {
            top: -80px;
            left: 70px;
        }

            .content span:nth-of-type(7):before {
                animation: opacity 1s 6.5s alternate infinite;
            }

.corner {
    width: 50px;
    height: 50px;
    animation: scale 2s alternate infinite ease-in;
    filter: blur(1px);
    position: absolute;
    opacity: .1;
}

    .corner:nth-of-type(1) {
        top: 2rem;
        left: 2rem;
        border-top: 2px solid green;
        border-left: 2px solid green;
    }

    .corner:nth-of-type(2) {
        top: 2rem;
        right: 2rem;
        border-top: 2px solid green;
        border-right: 2px solid green;
        animation-delay: 0.5s;
    }

    .corner:nth-of-type(3) {
        bottom: 2rem;
        left: 2rem;
        border-bottom: 2px solid green;
        border-left: 2px solid green;
        animation-delay: 1s;
    }

    .corner:nth-of-type(4) {
        bottom: 2rem;
        right: 2rem;
        border-bottom: 2px solid green;
        border-right: 2px solid green;
        animation-delay: 1.5s;
    }

.continue {
    filter: blur(0px);
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all .5s;
    animation: opacity 2s 3s forwards 1;
    opacity: 0;
}

    .continue img {
        width: 250px;
        height: auto;
    }

.right-vert-line {
    position: absolute;
    background: linear-gradient(transparent, black);
    opacity: 1;
    top: 0;
    bottom: 0;
    right: -5%;
    width: 2px;
    animation: moveToLeft 2s 1s forwards ease-in-out;
    filter: blur(1px);
}

.left-vert-line {
    position: absolute;
    background: linear-gradient(black, transparent);
    opacity: 1;
    top: 0;
    bottom: 0;
    right: 105%;
    width: 2px;
    animation: moveToRight 2s 1s forwards ease-in-out;
    filter: blur(1px);
}

@keyframes moveToLeft {
    from {
        right: 0%;
    }

    50% {
        opacity: .3;
    }

    to {
        right: 100%;
        opacity: 0;
    }
}

@keyframes moveToRight {
    from {
        right: 100%;
    }

    50% {
        opacity: .3;
    }

    to {
        right: 0%;
        opacity: 0;
    }
}

@keyframes scale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes backToPosition {
    to {
        left: 0;
        top: 0;
    }
}

@keyframes rightToLeft {
    0% {
        opacity: 0;
        transform: translate(-35%, 0) scale(2);
    }

    10% {
        opacity: .01;
    }

    50% {
        opacity: .5;
    }

    90% {
        opacity: .01;
    }

    100% {
        transform: translate(-65%, 0) scale(2);
        opacity: 0;
    }
}

@keyframes moveTop {
    0% {
        opacity: 1;
    }

    100% {
        top: -100%;
        bottom: 100%;
        opacity: 0;
    }
}

@keyframes textShadow {
    from {
        text-shadow: 10px 0px 2px rgba(0, 128, 0, 0.8);
        filter: blur(0.5px);
    }

    to {
        text-shadow: 5px 0px 2px rgba(0, 128, 0, 0.8);
        filter: blur(0.5px);
    }
}

/****/
@-webkit-keyframes frontOpen {
    from {
        -webkit-transform: rotateY(90deg) translateZ(8px);
        z-index: 100;
    }

    to {
        -webkit-transform: rotateY(0deg) translateZ(0);
        z-index: 0;
    }
}

@-webkit-keyframes frontOpenb {
    from {
        -webkit-transform: rotateY(-90deg) translateZ(8px);
        z-index: 100;
    }

    to {
        -webkit-transform: rotateY(0deg) translateZ(0);
        z-index: 0;
    }
}

/**** Updated Css 31/10/2018 ****/
.alert.alert-error{
    position: fixed;
    top: 30px;
    right: 35px;
    text-align: left;
    width: 315px;
}