body:not(#loginpage) {
	background: #f2f2f2 !important;
}

#loginpage{
	background-image: url(/images/content/background.svg) !important;
	background-size: cover !important;
	background-repeat: no-repeat;
	font-family: "Montserrat",sans-serif;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: unset;
}

#loginpage #content{
	background-color: rgba(41,42,45, .85);
	margin: 0;
	padding: 30px 0 0;
	height: 100%;
	position: absolute;
	background: linear-gradient(150deg,rgba(41,42,45, .9),rgba(41,42,45,.82),rgba(22,26,33, .7),rgba(30,30,30,.88),rgba(22,26,33,.74), rgba(41,42,45,.88)) 50%/cover;
	background: -moz-linear-gradient(150deg,rgba(41,42,45, .9),rgba(41,42,45,.82),rgba(22,26,33, .7),rgba(30,30,30,.88),rgba(22,26,33,.74), rgba(41,42,45,.88)) 50%/cover;
	background-size: 500% 100%;
	-webkit-animation: flowing-data-v 8s ease infinite;
	animation: flowing-data-v 14s ease infinite;
	transition: all .5s linear;
}

::-webkit-input-placeholder {
	color: #61688B;
}

::-moz-placeholder {
	color: #61688B;
}

::-ms-placeholder {
	color: #61688B;
}

::placeholder {
	color: #61688B;
}

#content {
	display: block;
	width: 100%;
	margin: 30px 0 0;
}

#content .logo {
	width: 120px;
	height: auto !important;
	display: block;
	margin: 0 auto 25px;
}

#content .logo a{
	text-align: center;
	min-width: 100px;
	display: block;
	color: #FFF;
	font-size: 25px;
}

#content .logo img{
    margin: auto;
    display: block;
    width: 100px;
    height: 100px;
}

#content .container {
	width: 100%;
	max-width: 400px;
	display: block;
	margin: 0 auto;
	background-color: #FFF;
	border-radius: 0;
	overflow: hidden;
	padding: 30px 35px;
	position: relative;
	background-color: #292A2D;
}

#content .container table,
#content .container table tr {
	width: 100%;
	margin: 0;
	padding: 0;
}

#content .container table tr td {
	width: 100%;
	margin: 16px 0 6px;
	padding: 0;
	display: block;
}

#content .container input[type=email], #content .container input[type=password], #content .container input:-internal-autofill-selected {
	display: block;
	width: 100%;
	height: 44px;
	border: 0;
	color: #FFFFFF;
	background: #f5f6f7!important;
	padding: 12px 12px 12px 34px;
	font-size: 12px;
	border-radius: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	filter: grayscale(1) brightness(1.025);
}

#content .container input[type=email] {
    background-image: url('/images/icons/login/email.svg');
    background-position: left 10px top 15px;
    background-size: 14px 14px;
    background-repeat: no-repeat;
}

#content .container input[type=password] {
    background-image: url('/images/icons/login/password.svg');
    background-position: left 10px top 15px;
    background-size: 14px 14px;
    background-repeat: no-repeat;
}

#content .container input[type=submit] {
    background-color: rgb(24, 119, 242);
    border-color: rgb(24, 119, 242);
    border-radius: 6px;
    width: 100%;
    color: rgb(255, 255, 255);
    font-size: 15px;
    letter-spacing: .6px;
    font-weight: 500;
    font-family: Arial, sans-serif;
    line-height: 40px;
    text-align: center;
    -webkit-appearance: none;
	appearance: none;
    transition: background 0.3s ease-in;
}

#content .container input[type=submit]:hover {
	cursor: pointer;
}

#content .copyright {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 11px;
	color: #9B9CA3;
	margin: 10px 0;
}

@keyframes flowing-data-v {
    0% {
        background-position: 100% 50%
    }

    50% {
        background-position: 0 50%
    }

    to {
        background-position: 100% 50%
    }
}

@-webkit-keyframes flowing-data-v {
    0% {
        background-position: 100% 50%
    }

    50% {
        background-position: 0 50%
    }

    to {
        background-position: 100% 50%
    }
}
