@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

/* GENERALITIES */
	* {
		margin: 0;
		padding: 0;
		text-align: center;
		box-sizing: border-box;
		font-family: 'Special Elite', sans-serif;
	}
	
	body {
		background-color: darkred;
		background: url(img/la-renaissance-de-khahnos-escape-creation.jpg) no-repeat;
		background-position: center;
		background-attachment: fixed;
		background-size: cover;
	}
	
	main {
		text-align: center;
		width: 100%;
		margin: 0 auto;
		margin-top: 50px;
		padding-bottom: 100px;
	}
	
	h1, main div {
		width: 95%;
		margin: 0 auto;
	}
		
	main div {
		max-width: 500px;
		background-color: rgba(0,0,0,.5);
		padding: 25px;
		color: #fff;
		box-shadow: 0 0 50px rgba(0,0,0,1);
		border-radius: 15px;
		
	}
	
	h1 {
		margin-bottom: 0.2em;
		text-align: center;
		max-width: 750px;
		color: #ddd;
	}
	p {
		margin-bottom: 10px;
		line-height: 1.3;
		color: #fff;
	}
	
	main img {
		width: 100%;
	}
	
	a {
		color: #fff;
		transition: all 150ms ease-out;
	}
	a:hover {
		color: red;
		text-shadow: 0 0 10px rgba(255,0,0, 0.75);
	}

	.logo {
		transition: all 150ms ease-out;
		text-align: left;
		position: fixed;
		bottom: 0;
		right: 0;
		display: inline-block;
		background-color: #000;
		z-index: 99;
	}
	
	.logo:hover {
		transform: scale(1.1) rotate(2deg);
	}

	.logo img {
		width: 100px;
	}

/* FORM */
	form {
		width: 95%;
		max-width: 320px;
		margin: 25px auto;
		padding: 15px;
		padding-top: 30px;
		background-color: rgba(0,0,0,.5);
		border-radius: 5px;
		box-shadow: 0 0 10px rgba(0,0,0,.5);
	}
	
	form *:focus {
		outline: none;
	}
	
	input, label {
		display: block;
		width: 100%;
		text-align: left;
		margin-bottom: 5px;
		color: #fff;
		transition: all 200ms ease-out;
	}
	
	input {
		height: 40px;
		padding: 0 10px;
		margin-bottom: 15px;
		border: none;
		border-bottom: 5px solid #fff;
		background-color: transparent;
		font-size: 16px;
	}
	
	input:focus {
		box-shadow: inset 0 0 10px #ff00259e;
		border-bottom-color: #ff0025;
	}
	
/* BUTTON */
	button {
		display: inline-block;
		padding: 13px 20px 10px;
		background-color: red;
		text-decoration: none;
		text-transform: uppercase;
		color: #fff;
		text-shadow: 2px 2px 2px rgba(0,0,0,.35);
		border-radius: 10px;
		border: 2px solid rgba(255,255,255,.15);
		font-weight: bold;
		letter-spacing: 1px;
		font-size: 14px;
		margin-top: 15px;
		margin-bottom: 15px;
		cursor: pointer;
		box-shadow: 0 0 10px rgba(0,0,0, 0.75);
		transition: all 150ms ease-out;
	}

	button:hover, button:focus {
		box-shadow: 0 0 10px rgba(255,0,0, 0.75);
		outline: none;
	}
	
	button[disabled="disabled"] {
		background-color: grey;
		text-shadow: none;
		pointer-events: none;
	}
	button[disabled="disabled"]:hover, button[disabled="disabled"]:focus {
		box-shadow: none;
	}

/* MSG */
	.msg {
		padding: 10px;
		background-color: #fff;
		color: #ff0025;
	}
