@charset "utf-8";
/* CSS Document */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000A07;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;	
  min-height: 80vh;
  background-color: #000A07;
}

.container_central {
  position: relative; /* Adicionado para posicionamento relativo */
  width: 750px;
  height: 450px;
  box-sizing: border-box;
  background: rgb(0, 36, 25);
  background: radial-gradient(circle, rgba(0, 36, 25, 1) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 15px;
  box-shadow: 0px 0px 600px rgba(83, 161, 0, 0.4);
}

.container_central::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 350px;
  background-color: #000A07; /* Cor da linha */
  left: 50%; /* Centraliza horizontalmente */
  top: 50px;
  transform: translateX(-50%); /* Ajusta a posição */
}
.container_logotipo{
	float: left;
	box-sizing: border-box;
	width: 375px;
	margin-top: 25%;
	display: flex;
	justify-content: center;
}

.container_login{
	float: right;
	box-sizing: border-box;
	
	width: 375px;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

form {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

input{
	width: 250px;
	height:45px;
	padding: 15px;
	box-sizing: border-box;
	border:none;
	border-radius: 5px;
	margin-bottom: 20px;
	font-size: 15px;
}

input:focus{
	outline: 2px solid #00C81D;
	border: none;
	box-shadow: 0px 0px 20px rgba(83, 161, 0, 0.4);
}


.btn{
	background-color:#00C81D;
	color: #ffffff;
}

.btn:hover{
	box-shadow: 0px 0px 20px rgba(83, 161, 0, 0.4);
	color: #ffffff;
}


