* {
	margin: 0; padding: 0;
}

@font-face {
	font-family: impact; src: url(INCLUDES/FONTS/IMPACT.ttf);
}
@font-face {
	font-family: gilc; src: url(INCLUDES/FONTS/GILC.ttf);
}

body {
	background-color: gainsboro;
}

header {
	width: 100vw; height: 120px; background: url(INCLUDES/BACKGROUND.png);
	background-position: center; background-size: cover; border-bottom: solid 1px #d6ab60;
	transition: .5s; text-align: center;
}
header img {
	width: 520px;
}

h1 {
	margin: 40px; padding: 15px 25px; font-size: 40pt;
	font-family: impact; font-weight: 400; text-align: center;
	background-color: whitesmoke; border-radius: 15px; 
}
input {
	border-radius: 0; -webkit-appearance: none;
    -moz-appearance: none; appearance: none; border: none;
}


#log-cont {
	width: 1280px; margin: 15px auto; padding: 10px; background: url(INCLUDES/BACKGROUND.png);
	background-position: center; /*box-shadow: 0 0 15px 2px #d6ab60ba;*/
	background-size: cover; border: solid 1px #d6ab60; border-radius: 50px; 
}


#box {
	width: 500px; padding: 50px; margin: 80px auto;
	background-color: whitesmoke;  border: 1px solid #009cff; border-radius: 25px;
	box-shadow: 0 0 40px 8px #009cff20; display: block;
}
#box li {
	list-style: none;
}
#box li p, #box p {
	margin: 0; font-family: gilc; font-size: 28pt; text-align: left;
}
#box p {
	margin: 10px 0 0; text-align: center;
}

#box li input {
	width: 100%; height: 75px; margin: 7px 0 15px 0; padding: 5px 10px;
	font-size: 24pt; background-color: lightblue; border-radius: 10px;
}

#box input[type=submit] {
	width: 100%; margin: 10px 0 0; padding: 20px 0; font-size: 24pt;
	color: white; background-color: rgb(241, 105, 88); border-radius: 10px;
}



@media screen and (max-width:980px){
	
header {
	height: 85px;
}
header img {
	width: 370px;
}
	
#log-cont {
	width: auto; margin: 0; background: none;
	border: none; border-radius: 0;
}


#box {
	margin: 130px auto;
}
#box li p {
	font-size: 38pt;
}
#box input[type=submit] {
	font-size: 32pt;
}

}

@media screen and (max-width:640px){

header {
	height: 75px;
}
header img {
	width: calc(100% - 72px);
}

h1 {
	margin: 25px; padding: 5px 22px;
	font-size: 28pt;
}




#box {
	width: calc(100% - 100px); padding: 15px 25px;
	margin: 50px auto;
}




#box li input {
	height: 50px; border-radius: 5px; font-size: 18pt;
}

#box li input:hover, input:focus {
	box-shadow: 3px 3px 5px rgb(150, 150, 150);
}

#box input[type=submit] {
        width: 100%;
        margin: 10px 0 0;
        font-size: 16pt;
        padding: 15px 0;
        color: white;
        background-color: rgb(241, 105, 88);
        border-radius: 10px;
}


#box li p {
	font-family: gilc; font-size: 30pt;
}

}



