*{
	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: 20px;
	overflow-y: auto;
}

form{
	width: 310px;
	max-width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
}

.login-content img{
    height: 60px;
    margin-bottom: 12px;
}

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

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

.i i{
	transition: .3s;
}

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

#forgot {
	text-align: right;
}

a{
	display: block;
	text-decoration: none;
	color: #999;
	font-size: 0.85rem;
	transition: .3s;
	margin-top: 6px;
}

a:hover{
	color: #38d39f;
}

.btn{
	display: block;
	width: 100%;
	height: 45px;
	border-radius: 5px;
	outline: none;
	border: none;
	box-shadow: 0px 5px 2px rgba(0, 0, 0, 0.18);
	background-color: #06CF90;
	background-size: 200%;
	font-size: 1.05rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 18px 0 8px 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 queries para diferentes tamanhos */
@media screen and (max-width: 1200px){
	form{
		width: 290px;
	}
	
	.input {
		height: 42px;
		margin-top: 8px;
		margin-bottom: 8px;
	}
}

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

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
	
	form{
		width: 330px;
	}
}

@media screen and (max-width: 600px){
	form{
		width: 90%;
		max-width: 300px;
	}
}

/* Ajustes específicos para notebooks Full HD */
@media screen and (min-width: 1920px) and (max-height: 1080px){
	form{
		width: 320px;
	}
	
	.login-content {
		padding: 30px;
	}
	
	.login-content img{
		height: 65px;
		margin-bottom: 15px;
	}
}

/* Ajustes para notebooks com tela menor */
@media screen and (max-height: 900px){
	.login-content {
		padding: 15px;
	}
	
	form {
		width: 290px;
	}
	
	.input {
		height: 42px;
		margin-top: 7px;
		margin-bottom: 7px;
		padding: 0.35rem 0.6rem;
		font-size: 0.95rem;
	}
	
	.login-content img{
		height: 55px;
		margin-bottom: 8px;
	}
	
	.btn {
		height: 42px;
		margin: 14px 0 6px 0;
		font-size: 1rem;
	}
	
	.login-content h2{
		font-size: 17px;
	}
}

/* Ajustes extremos para telas muito baixas */
@media screen and (max-height: 720px){
	.login-content {
		padding: 10px;
	}
	
	form {
		width: 270px;
	}
	
	.input {
		height: 40px;
		margin-top: 6px;
		margin-bottom: 6px;
		font-size: 0.9rem;
	}
	
	.login-content img{
		height: 50px;
		margin-bottom: 6px;
	}
	
	.btn {
		height: 40px;
		margin: 12px 0 5px 0;
		font-size: 0.95rem;
	}
}