*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.wave{
	position: fixed;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: -1;
}

.container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    padding: 0;
}

.img{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img img {

	width: 75%;
	object-fit: cover;
	object-position: center;
}

.login-content{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100vh;
	width: 100%;
	padding: 40px;
}

form{
	width: 340px;
}

.login-content img{
    height: 70px;
}

.login-content h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 20px;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 5px;
	box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.25);
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
	margin-top: 20px;
	margin-bottom: 20px;
}

#forgot {
	text-align: right;
}

a{
	display: block;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

a:hover{
	color: #38d39f;
}

.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	outline: none;
	border: none;
	box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.25);
	background-color: #06CF90;
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;

}
.btn:hover{
	background-position: right;
}

::-webkit-input-placeholder {
	color: #53BDEB;
 }
 
 :-moz-placeholder {
	color: #53BDEB;
 }
 
 ::-moz-placeholder {
	color: #53BDEB;  
 }
 
 :-ms-input-placeholder {  
	color: #53BDEB;  
 }

@media screen and (max-width: 1050px){
	.container{
		grid-gap: 0;
	}
}

@media screen and (max-width: 1000px){
	form{
		width: 290px;
	}

	.login-content h2{
        font-size: 2.4rem;
        margin: 8px 0;
	}

	.img img{
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 900px){
	.container{
		grid-template-columns: 1fr;
	}

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
}

/* inicio modal*/
.modal {
	display: none; 
	position: fixed;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto; 
	background-color: rgba(0,0,0,0.4); 
  }
  
  .modal-content {
	background-color: #fefefe;
	margin: 15% auto; 
	padding: 20px;
	border: 1px solid #888;
	width: 50%;
	border-radius: 10px;
  }
  .modal-inputs {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .close {
	position: relative;
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }
  
  .input-modal {
	margin: 0 auto;
	  width: 75%;
	  height: 20%;
	  border: none;
	  border-radius: 5px;
	  box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.25);
	  outline: none;
	  padding: 0.5rem 0.7rem;
	  font-size: 1.2rem;
	  color: #555;
	  font-family: 'poppins', sans-serif;
	  margin-top: 20px;
	  margin-bottom: 20px;
  }
  #deleteButton {
	background-color: #e65061;
	color: white;
  }
  
  #modalButton {
	color: white;
	background-color: #e65061;
  }
  
  /* fim modal*/