body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.allWrap{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*name website*/
h1 {
    color: #ccc;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 16px; 
    cursor: default;
}
/*logo*/
.logoWebsite .baner {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logoWebsite a {
	text-decoration: none;
}

.logoWebsite .logo {
	display: inline-block;
	cursor: pointer;
	font-size: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logoWebsite .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;
}

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

.logoWebsite .bian {
	color: white;
}

/*..............................*/
/*_______EMAIL SEND INFO________*/
/*..............................*/
.emeilSendInfo{
    width: 350px;
    margin: 20px auto;
    color: #fff;
}

/*..............................*/
/*_______SEND EMAIL FORM________*/
/*..............................*/
.howToChangePasswordInfo{
    width: 350px;
    margin: 20px auto;
    color: #fff;
}

.howToChangePasswordInfo p{
    padding: 0;
    margin-top: 0;
    margin-bottom: 2px;
}

.howToChangePasswordInfo p .howToChangePasswordBtn{
    padding: 0 5px;
    background-image: -webkit-linear-gradient(#ffc400, #d97600);
    background-image: -o-linear-gradient(#ffc400, #d97600);
    background-image: linear-gradient(#ffc400, #d97600);
    cursor: pointer;
}

.howToChangePasswordInfoMore{
    display: none;
}

.badEmail{
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
    animation: error infinite 5s;
}

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

	45% {
		opacity: 1;
	}

	55% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.sendEmailWrap{
    width: 350px;
    padding: 10px;
    margin: 0px auto;
    border: 2px solid #e27f00;
    background-color: #000;
    background-image:  -webkit-linear-gradient(#282828, #090909);
    background-image:  -o-linear-gradient(#282828, #090909);
    background-image:  linear-gradient(#282828, #090909);
    border-radius: 10px;
    color: #fff;
}

form{
    margin: 0;
}

.sendEmailForm{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.email{
    width: 100%;  
}
    
.email > input{
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 6px;
    font-size: 20px;
    margin-bottom: 8px;
    border-bottom: 1px dotted #ccc;
}

.email > input:focus {
	box-shadow: 0px 0px 2px 1px #e27f00;
}
    
input[type="submit"] {
	padding: 10px;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 17px;
	background-image: linear-gradient(#17bdff, #1778d2);
    border-radius: 5px;
	color: #fff;
	outline: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}

input[type="submit"]:hover {
	background-image: linear-gradient(#3dc8ff, #3093ed);
}
