/* Fontes */

@font-face {
	font-family: 'Ubuntu Light';
	src: url('../fonts/Ubuntu-L.ttf');
}

@font-face {
	font-family: 'Darleston';
	src: url('../fonts/Darleston.ttf');
}

/* Body */

* {
	font-family: 'Ubuntu Light';
	font-size: 17px;
}

body {
	background: rgba(240, 240, 240, 0.8);
	padding: 0.25%;
}

h1 {
	font-size: 36px;
	color: rgba(20, 20, 20, 1.0);
}
h2 {
	font-size: 28px;
	color: rgba(20, 20, 20, 1.0);
}

p {
	text-align: justify;
	color: rgba(20, 20, 20, 1.0);
}

/* Theme */

#theme {
	text-align: center;
	font-family: 'Darleston';
	font-size: 108px;
	font-weight: 400;
	margin-top: 1%;
	margin-bottom: 1%;
}
#theme:hover {
	cursor: pointer;
}

/* Cadastrado (div) */

#cadastrado {
	padding: 0.5%;
}

/* Form */

.form-cadastro {
	width: 30%;
	background: rgba(240, 240, 240, 1.0);
	margin: 0.5% auto;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
}

form label {
	display: block;
	margin-left: 2%;
	margin-top: 2%;
	margin-bottom: 1%;
}

form input[type='text'], [type='password'] {
	display: block;
	width: 96%;
	margin-left: 2%;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	padding: 1%;
	outline: 0;
	transition: 0.5s;
}
form input[type='text']:focus, [type='password']:focus {
	border: 1px solid rgba(20, 20, 20, 0.4);
}

form textarea {
	display: block;
	width: 96%;
	margin-left: 2%;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	outline: 0;
	resize: none;
	transition: 0.5s;
}
form textarea:focus {
	border: 1px solid rgba(20, 20, 20, 0.4);
}

form input[type='submit'] {
	background: rgba(140, 140, 140, 0.1);
	width: 30%;
	margin-top: 5%;
	margin-left: 68%;
	margin-bottom: 2%;
	padding: 1%;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	transition: 0.5s;
}
form input[type='submit']:hover {
	background: rgba(140, 140, 140, 0.2);
	cursor: pointer;
}

/* Echo */

.echo {
	width: 40%;
	color: rgba(240, 240, 240, 1.0);
	text-align: center;
	margin: 3% auto;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	padding: 1.5%;
	opacity: 0.0;
}

/* Footer */

footer {
	width: 100%;
	height: 10%;
	color: rgba(240, 240, 240, 1.0);
	background: rgba(60, 60, 60, 1.0);
	text-align: center;
	font-size: 24px;
	line-height: 90px;
	position: fixed;
	left: 0;
	bottom: 0;
}

/* Scrollbar */

::-webkit-scrollbar {
	width: 8px;
	height: 12px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: rgba(60, 60, 60, 0.2);
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(60, 60, 60, 0.3);
}

/* Responsividade */

@media screen and (max-width: 768px) {
	/* Body */

	* {
		font-size: 15px;
	}

	h1 {
		font-size: 32px;
		color: rgba(20, 20, 20, 1.0);
	}
	h2 {
		font-size: 24px;
		color: rgba(20, 20, 20, 1.0);
	}

	/* Theme */

	#theme {
		font-size: 92px;
	}

	/* Form */

	.form-cadastro {
		width: 85%;
	}

	/* Echo */

	.echo {
		width: 85%;
		margin-top: 6%;
		padding: 4%;
	}

	/* Footer */

	footer {
		font-size: 20px;
		line-height: 70px;
	}
}
