/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Bryan Hadaway
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/bhadaway/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024.1
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
	background-color: #fff7d8;
	color: #444444;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2%;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	min-height: 100vh;
}

main{
		flex: 1;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
}

.home,
.erro,
h1 {
	color: #9e0000;
}

* {
	box-sizing: border-box;
}

video {
	width: 100%;
	max-width: 1440px;
	margin: 2vw 0;
	background: black;
	cursor: pointer;
}

.logo-svg {
	width: 100px;
}

h1 {
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 32px;
	margin: 42px 0 0;
	line-height: 32px;
}

.first-text {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	width: 100%;
	max-width: 480px;
	letter-spacing: 1px;
	font-weight: 300;
}

.home .first-text{
	margin: 21px 0;
}

.main-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 42px;
}

.info-text {
	font-style: italic;
	font-weight: 300;
}

.info-text b {
	color: #9e0000;
	font-weight: 300;
}

form {
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-middle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}

.form-line {
	margin: 20px;
	display: flex;
}

input[type="submit"] {
	background-color: #444444;
	border: none;
	outline: none;
	color: #fff7d8;
	padding: 8px 30px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 12px;
	transition: all .4s ease-in-out;
	cursor: pointer;
	border-radius: 4px;
}


input[type="submit"]:hover {
	color: white;
}
input[type="password"],
input[type="text"],
input[type="email"] {
	border: 1px solid #444444;
	outline: none;
	color: #444444;
	background: transparent;
	height: 32px;
	font-size: 16px;
	padding: 0 10px;
	margin-right: 5px;
	font-weight: 300;
	transition: all .4s ease-in-out;
	border-radius: 4px;
}

input[type="password"]:focus ,
input[type="text"]:focus ,
input[type="email"]{
	background: rgba(255, 255, 255, .5);
}

input[type="email"]::placeholder {
	font-weight: 300;
	color: #444444;
	transition: all .4s ease-in-out;
}




@media (max-width:480px) {

*{
	font-weight: 400 !important;
}

.first-text b{
	font-weight: 700 !important;
}

	.info-text {
		font-size: 12px
	}


	.first-text {
		font-size: 12px;
	}

	video {
		margin: 2vh 0;
	}


	h1 {
		letter-spacing: 1px;
		font-size: 24px;
		margin: 10vh 0 12px;
	}

	body {
		height: 100vh;
		align-items: center;
		padding-top: 4vh;
	}

	html {
		min-height: 100%;
	}
}