* {
	font-family: 'PT Serif', serif;
}

body {
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	max-width: 1800px;
	background-color: #000;
    background-image: url(../foto/home-banner.jpg);
    background-size: cover;
    background-position: center;
}

body {
	overflow-y: scroll;
	scrollbar-color: #e27f00 #000;
	scrollbar-width: thin;
}

body::-webkit-scrollbar {
	width: 7px;
	height: 0;
}

body::-moz-scrollbar {
	width: 7px;
	height: 0;
}

body::-webkit-scrollbar-track {
	background-color: #000;
}

body::-moz-scrollbar-track {
	background-color: #000;
}

body::-webkit-scrollbar-thumb {
	background-color: #e27f00;
}

body::-moz-scrollbar-thumb {
	background-color: #e27f00;
}

body::-webkit-scrollbar-button {
	display: none;
}

body::-moz-scrollbar-button {
	display: none;
}

a {
	text-decoration: none;
}

.baner {
	height: 100px;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.logoInForm{
	cursor: pointer;
	font-size: 20px;
	display: none;
	justify-content: center;
	align-items: center;
}
.logoInForm .hot,
.logoInForm .bian{
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 25px;
    color: #ff8f00;
	transition: .5s;
}

.logoInForm .bian {
	color: white;
}
.logo {
	cursor: pointer;
	font-size: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logoMirror {
	-moz-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1);
	opacity: 0.35;
	cursor: default;
}

.pMirrorOff {
	border-bottom: 1px solid #777;
	cursor: default;
}

.pMirror {
	margin-top: -14px;
	-moz-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1);
	opacity: 0.35;
	cursor: default;
}

.hot,
.bian {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 45px;
    color: #ff8f00;
	transition: .5s;
}

.bian {
	color: white;
}

p {
	font-size: 15px;
	letter-spacing: 15px;
	color: #c9c9c9;
}

form {
	width: 50%;
}

.formWrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 350px;
	height: 300px;
    opacity: 0.9;
	margin: 0 auto;
	background-color: white;
    border-radius: 10px;
	background-color: #323232;
	background-image: linear-gradient(#272727, #000000);
	border: 2px solid #ff8f00;
}

#error {
	position: relative;
	top: 10px;
	left: 0;
	color: #fff;
	animation: error infinite 5s;
}

@keyframes error {
	0% {
		opacity: 1;
	}

	45% {
		opacity: 1;
	}

	55% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

input[type=text] {
	margin-top: 20px;
}

input[type=text],
input[type=password] {
	width: 60%;
	border: none;
	outline: none;
	padding: 6px;
	font-size: 20px;
	margin-bottom: 8px;
    border-radius: 5px;
	border-bottom: 1px dotted #e27f00;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid #000;
}

input[type=text]:focus,
input[type=password]:focus {
	border: 1px solid #e27f00;
}

.forgetPass {
	text-decoration: none;
	color: #ccc;
}

button {
	width: 60%;
	padding: 10px;
	margin-top: 15px;
	font-size: 15px;
    border-radius: 5px;
	background-image: linear-gradient(#00e428, #0b8000);
	color: #fff;
	outline: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
	margin-bottom: 10px;
}

button:hover {
	background-image: linear-gradient(#15e039, #1aa80d);
}

.register {
	width: 60%;
	padding: 10px;
	font-size: 15px;
    border-radius: 5px;
	background-image: linear-gradient(#17bdff, #1778d2);
	color: #fff;
	text-align: center;
	outline: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}

.register:hover {
	background-image: linear-gradient(#2fc4ff, #2286e3);
}

/*..............................*/
/*__________RESPONSIVE__________*/
/*..............................*/
@media (max-width: 970px) {
	p {
		font-size: 13px;
		letter-spacing: 12px;
	}
}

@media (max-width: 830px) {
	.formWrap {
		width: 320px;
		height: 320px;
	}

	.baner {
		z-index: 1
	}

	p {
		display: none
	}
}

@media (max-width: 710px) {
	body {
		display: block;
	}

	.baner {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		margin-top: 50px;
	}

	.logoMirror {
		display: none;
	}

	form {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		width: 100vw;
	}

}

@media(max-height: 600px) and (orientation: landscape) {
	.baner {
		margin-top: 20px;
	}

	.logo {
		font-size: 22px;
	}


}

@media(max-height: 516px) and (orientation: landscape) {
    .logoInForm{
	    display: flex;
    }
    
    .baner {
        display: none;
    }
}


@media(max-height: 600px) and (max-width: 710px) and (orientation: portrait) {
    .logoInForm{
	    display: flex;
    }
    
	.baner {
        display: none;
    }

}

@media(max-width: 340px) {
	.logo {
        font-size: 25px;
	}
}

@media(max-width: 340px) {
	.formWrap {
		width: 270px;
		height: 270px;
	}

	input[type=text],
	input[type=password] {
		width: 70%;
		padding: 3px;
		font-size: 18px;
	}
    
    button,
    .register{
        width: 70%;
    }
}

@media(max-width: 250px) {
    
    input[type=text], input[type=password] {
        width: 97%;
    }
    
    button,
    .register{
        width: 97%;
    }
}