@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{

	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

body{

  min-height: 100vh;
  background: url(background.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
}

footer{
	border-radius: 20px;
}



.form{

	z-index: 1;
	font-family: "Poppins", sans-serif;
	/* position: absolute; */
	width: 320px;
	text-align: center;
}

.footer-centered {
	text-align: center;
}

.centered-form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.form img{

	margin-bottom: 30px;
	padding-bottom: 10px;
}

.form .signup-form{
	display: none;
}

.form .user-input{

	width: 320px;
	height: 55px;
	margin-bottom: 30px;
	outline: none;
	border: none;
	/*background: #056FF7;*/
	background: rgba(32, 32, 45, 0.8);
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	text-align: center;
	border-radius: 5px;
	transition: 0.5s;
	transition-property: border-left, border-right, box-shadow;
}

.form .user-input:hover, .form .user-input:focus, .form .user-input:active{

	border-left: solid 8px #056FF7;
	border-right: solid 8px #4285F4;
	box-shadow: 0 0 100px rgba(66, 133, 244, 0.8);
}

.form .options-01{
	margin-bottom: 50px;
}

.form .options-01 input{

	width: 15px;
	height: 15px;
	margin-right: 5px;
}

.form .options-01 .remember-me{

	color: #0000FF;
	font-size: 14px;
	display: flex;
	align-items: center;
	float: left;
	cursor: pointer;
}

.form .options-01 a{

	color: #888;
	font-size: 14px;
	font-style: italic;
	float: right;
}

.form .btn{

	outline: none;
	border: none;
	width: 320px;
	height: 55px;
	background: #4285F4;
	color: #fff;
	font-size: 18px;
	letter-spacing: 1px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.5s;
	transition-property: border-left, border-right, box-shadow;
}

.form .btn:hover{

	border-left: solid 8px rgba(255, 255, 255, 0.5);
	border-right: solid 8px rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 100px rgba(66, 133, 244, 0.8);
}

.form .options-02{

	color: #056FF7;
	font-size: 14px;
	margin-top: 30px;
	color: red;
}

.form .options-02 a{

	color: red;
}

/* Responsive CSS */


@media screen and (max-width: 500px){

	.form{
		width: 95%;
	}

	.form .user-input{
		width: 100%
	}

	.form .btn{
		width: 100%;
	}
}


::-webkit-input-placeholder { /* WebKit browsers */

  color: rgba(255, 255, 255, 0.8);

}


/*:-moz-placeholder { /* Mozilla Firefox 4 to 18 */

 /* color: rgba(66, 133, 244, 0.8);

}

::-moz-placeholder { /* Mozilla Firefox 19+ */

 /* color: rgba(66, 133, 244, 0.8);

}

:-ms-input-placeholder { /* Internet Explorer 10+ */

 /* color: red;

}*/


div#msg-sucesso{

	width: 400px;

	margin: 10px auto;

	padding: 10px;

	background-color: rgba(50,205,50,.3);

	border: 1px solid rgb(34,139,34);

}

div.msg-erro{

	width: 400px;

	margin: 10px auto;

	padding: 10px;

	background-color: rgba(250,128,114,.3);

	border: 1px solid rgb(165,42,42);

}