
img {
	max-height: 100vh;
	width: 100%;
	height: 100%;
}

#logo-login {
	max-width: 100%;
    height: auto;
}

.div-logo-login {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	padding: 50px;
}

  /* CENTRALIZANDO ITENS NA TELA */

html {
	width: 100vw;
	height: 100vh;
	font-size: 62.5%;
	background-color: rgb(179, 177, 177);
	display: flex;
	justify-content: center;
	align-items: center;
}

.conteudo {
	width: 100vw;
	display: grid;
	grid-template-columns: 30% 70%;
	height: 100vh;
}

body {
	margin: unset !important;
}

  /* LOGIN */

.login {
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.4);
	border-top-right-radius: 3%;
	border-bottom-right-radius: 3%;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3rem;
}

.login h2 {
	font-size: 3rem;
	align-self: flex-start;
	margin-top: 3rem;
	margin-bottom: 3rem;
	color: rgb(29, 28, 28);
	border-bottom: 2px solid rgb(48, 48, 48);
}

.login label {
	font-size: 1.6rem;
	font-weight: 700;
	color: rgb(29, 28, 28);
	margin-bottom: 0.5rem;
}

.login input {
	margin-bottom: 4rem;
	height: 2rem;
	border: none;
	border-bottom: 1px solid rgb(29, 28, 28);
	background-color: transparent;
	outline: none;
	transition: all 300ms ease;
	-webkit-box-shadow: 0 0 0 30px #ebebeb inset;
}

.login input:hover {
	border-bottom: 1px solid #2a2c35;
}

.links {
	display: flex;
	justify-content: center;
}

.links a {
	font-size: 1.3rem;
	color: rgb(29, 28, 28);
	margin-bottom: 2rem;
	transition: all 300ms ease;
}

.links a:hover {
	color: #2a2c35;
}

.login button {
	margin-bottom: 0.4rem;
	height: 4rem;
	width: 100%;
	border: none;
	color: white;
	cursor: pointer;
	font-size: 1.4rem;
	border-radius: 4px;
}

span {
	margin-left: 1rem;
}

.btn {
	background-color: #2a2c35;
	transition: all 500ms ease-in-out;
}

.btn:hover {
	background-color: #393b45;
}

.group-input-label {
	flex-direction: column;
}

.icone-senha{
	right: 10px;
	font-size: 19px;
	top: 43%;
	transform: translateY(-50%);
	cursor: pointer;
}

@media screen and (max-width: 450px) {
	body {
		/* background: url(https://raw.githubusercontent.com/CrislaineLuana/TelaLoginHtmlCss/main/img/pexels-vincent-ma-janssen-2886284.jpg); */
		background-position: center center;
		background-size: cover;
		background-position-y: 0px;
		background-repeat: no-repeat;
		border-top-right-radius: unset;
		border-bottom-right-radius: unset;
	}

	.img {
		display: none;
	}

	.login {
		background-color: rgba(255, 255, 255, 0.75);
		width: 100vw;
		height: 100vh;
	}

	.login h2 {
		margin-bottom: 7rem;
	}

	.links {
		margin-top: 5rem;
	}

	.btn,
	.social button {
		margin: 1rem 0;
	}
}