body{
    background: url(../img/bg.jpg) no-repeat center 22% fixed;
    background-color: #000;
    background-size: cover;
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}
iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}
.login-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 300px;
	height: 50px;
}
.login-form {
	position: relative;
	height: 100%;
	width: 100%;
}
.box {
	display: block;
	width: 100%;
	height: 50px;
	background: #7abd32b3;
	border: 3px solid transparent;
	border-radius: 25px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
label,.fheader {
    display: none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 0.9; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
.submit {
    display: block;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    float: right;
    width: 36px;
    height: 36px;
    margin: 4px;
    margin-right: 7px;
    border: 0;
    cursor: pointer;
    outline: none!important;
    transition: .2s all;
    border-radius: 20px;
    background-position: center;
    background-color: transparent;
    background-image: url(../img/key.png);
    background-size: 100%;
}
.submit:hover {
    transform: rotate(45deg);
}
#password {
	-webkit-appearance: none;
	width: 70%;
	border: none;
	height: 36px;
	margin-top: 3px;
	margin-left: 13px;
	outline: none !important;
	font-size: 14px;
	background: none;
	color: #fff;
	font-weight: 700;
	transition: all .22s cubic-bezier(.07,.74,.56,.89);
}
#password:focus {
	padding-left: 10px;
}
.error {
    display: none;
    color: white;
    margin: 13px;
    font-size: 15px;
    text-align: center;
}
.wrong.box {
    border: 3px solid #ff0000;
}
.show {
    display: block !important;
}