@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

*:focus {
	outline: #0070ac;
}

.container-wrapper {
	display: flex;
	width: 100%;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
}

.container-login {
	position: relative;
	width: 100%;
	height: 100vh;
	flex: 1 1 20rem;
	flex-direction: column;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fafafa;
	padding: 5%;
}

.container-welcome {
	width: 100%;
	flex: 1 1 40rem;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	padding: 5%;
}

.container-welcome img {
	width: 100%;
}

.icon-tut-wuri img {
	width: 70px;
	height: 70px;
	position: absolute;
	top: 5%;
	right: 8%;
}

form {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.form-group {
	width: 100%;
}

input::placeholder {
	font-size: 0.8rem;
	letter-spacing: 1.5px;
	color: #bbb;
}

input {
	width: 100%;
	padding: 0.7rem 1rem;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	border: 1.4px solid #aaa;
}

input:focus {
	border: 1.4px solid #0070ac;
}

.judul-login {
	font-size: 1.3rem;
	width: 100%;
	display: flex;
	align-items: start;
	flex-direction: column;
	text-align: left;
	margin-bottom: 0.6rem;
}

.judul-login h2 {
	font-size: 2rem;
	font-weight: 800;
}

.judul-login h3 {
	font-size: 1.7rem;
	font-weight: 700;
}

.form-label {
	font-weight: 500;
	display: flex;
	margin-bottom: 0.5rem;
	align-items: center;
	font-size: 0.9rem;
}

.form-group i {
	font-size: 1.1rem;
	margin-right: 0.5rem;
	color: #0070ac;
}

.alert-login {
	padding: 0.5rem 0.8rem;
	width: 100%;
	font-size: 0.9rem;
	margin: 0.7rem 0 1rem;
	background: rgba(255, 0, 0, 0.3);
}

.btn-log {
	width: 100%;
}

.btn-login {
	cursor: pointer;
	margin-top: 0.5rem;
	background: #0070ac;
	color: #fff;
	border: none;
	padding: 0.6rem 1rem;
	width: 100%;
	letter-spacing: 2px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

.btn-login::after {
	width: 100%;
	height: 0;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	content: "";
	background: #005087;
	z-index: -1;
	transition: 170ms linear;
}

.btn-login:hover::after {
	height: 100%;
}

#notif-alert-i {
	margin-right: 0.5rem;
}

@media (max-width: 1024px) {
	.container-login {
		width: 70%;
	}

	.container-welcome {
		display: none;
	}
}

@media (max-width: 912px) {
	.icon-tut-wuri img {
		width: 120px;
		height: 120px;
	}

	.container-login {
		padding: 0 15%;
	}
}

@media (max-width: 768px) {
	.container-login {
		padding: 0 10%;
	}

	.alert-login {
		font-size: 1rem;
	}

	.btn-login {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	*,
	html {
		font-size: 95%;
	}

	.icon-tut-wuri img {
		right: 8%;
		width: 100px;
		height: 100px;
	}

	form {
		width: 100%;
	}

	.alert-login {
		font-size: 0.9rem;
	}

	.btn-login {
		font-size: 0.9rem;
	}
}

@media (max-width: 400px) {
	*,
	html {
		font-size: 91%;
	}

	.icon-tut-wuri img {
		right: 8%;
		width: 90px;
		height: 90px;
	}

	.alert-login {
		font-size: 0.8rem;
	}

	.judul-login h2 {
		font-size: 1.8rem;
	}

	.judul-login h3 {
		font-size: 1.65rem;
	}
}

@media (max-width: 360px) {
	.icon-tut-wuri img {
		right: 8%;
		width: 75px;
		height: 75px;
	}

	.judul-login h2 {
		font-size: 1.6rem;
	}

	.judul-login h3 {
		font-size: 1.45rem;
	}
}
