body {
	background-image: url('bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	font-family: sans-serif;
}

img {
	width: 130px;
	position: absolute;
	left: calc(50% - 55px);
	top: 8%;
	border-radius: 50%;
}

.loginbox {
	width: 320px;
	height: 420px;
	background-color: #000;
	color: white;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	z-index: -1;
	padding: 70px 30px;
}

input {
	color: white;
	font-size: 14px;
	background: none;
	border: none;
	border-bottom: 1px solid white;
	padding-bottom: 10px;
	outline: none;
	width: 100%;
	font-family: 'Abel', sans-serif;
} 

h1 {
	text-align: center;
	margin: 0;
	padding: 0 0 20px;
	font-family: 'Montserrat Alternates', sans-serif;
}

p {
	font-family: 'Raleway', sans-serif;
}

button {
	width: 100%;
	background-color: #dd1c1a;
	padding: 5px 10px;
	color: white;
	border: none;
	border-radius: 20.5px;
	font-size: 18px;
	margin: 15px 0;
	font-family: 'El Messiri', sans-serif;
}

button:hover, button:focus {
	background-color: #F8B195;
	color: #272121;
	cursor: pointer;
}

a {
	text-decoration: none;
	font-size: 12px;
	color: darkgrey;
	line-height: 20px;
	font-family: 'News Cycle', sans-serif;
}

a:hover, a:focus {
	color: #E4D192;
}

@media (min-width: 2560px) {
	img {
	    top: 25%;
    }
    .loginbox {
    	width: 340px;
    	height: 440px;
    }
    input {
	    font-size: 20px;
	    border-bottom: 1px solid white;
	    padding-bottom: 10px;
    }
    button {
	    width: 100%;
	    padding: 10px;
	    border-radius: 20px;
	    font-size: 24px;
	    margin: 15px 0;
    }
    a {
	    font-size: 18px;
	    line-height: 24px;
    }
}

@media (max-width: 1440px) {}

@media (max-width: 1024px) {
	body {
	    background-repeat: repeat;
	}
	img {
	    top: 2%;
    }
}

@media (max-width: 768px) {
	body {
	    background-repeat: repeat;
	}
	img {
	    top: 2.8%;
    }
}

@media (max-width: 425px) {
	body {
	    background-repeat: repeat;
	}
	img {
	    top: 2%;
    }
}

@media (max-width: 375px) {
	body {
	    background-repeat: repeat;
	}
	img {
	    top: 3.5%;
    }
    .loginbox {
	    width: 300px;
    }
}

@media (max-width: 320px) {
	body {
	    background-repeat: repeat;
	}
	img {
	    top: 3%;
    }
    .loginbox {
	    width: 300px;
	    height: 405px;
	    padding: 65px 30px;
    }
}