* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
}

.container {
	position: relative;
	background-color: #fff;
	overflow: hidden;
	background-color: #F5F6FA;
}

.container:before {
	content: "";
	position: absolute;
	height: 200vw;
	width: 200vw;
	top: -10%;
	right: 43%;
	transform: translateY(-45%);
	background-image: linear-gradient(-45deg, #072348 0%, #072348 100%);
	background-color: #F5F6FA;
	border-radius: 50%;
	opacity: 0.9;
}

.grid-container {
	display: grid;
	grid-template-areas:
		'logo form'
		'quote form';
	grid-template-columns: 6.5fr 4.5fr;
	grid-template-rows: auto 1fr;
	height: 100vh;
}




/* LOGO */
.logo {
	grid-area: logo;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}


.logo img {
	width: 120px;
	height: 120px;
	display: inline-block;
	margin: 0 40px;
}


/* QUOTE */
.quote {
	grid-area: quote;
	color: #fff;
	padding: 20px 30px 0 60px;
	margin-top: 20px;
	position: relative;
}

.quote h3 {
	font-size: 1.1rem;
}

.quote .tokoh {
	margin-top: 20px;
	font-size: 1rem;
}

.maskot {
	position: absolute;
	left: 30%;
	bottom: 0;
}

.maskot img {
	width: 410px;
	transform: scaleX(-1);
}


/* FORM */
.form {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-area: form;
	z-index: 1000;
	width: 100%;
	box-sizing: border-box;
}

.form form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #fff;
	border-radius: 5%;
	box-shadow: 1vh 1vh 2vh grey;
	padding: 2.5rem;
	margin: 0 30px;
	margin-top: -50px;
}

.form .btn-link {
	color: #2a4354;
	text-decoration: none;
	transition: .3s ease;
	margin-top: 5px;
}

.form .btn-link:hover {
	color: #c26169;
}

.form-login h2 {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: x-large;
}

.btn {
	width: 80%;
	background-color: #2a4354;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 4vw;
	box-shadow: 2px 2px 5px #333;
	text-transform: uppercase;
	font-weight: 600;
	margin: 20px 0;
	padding: 2.5vh 2vw;
	cursor: pointer;
	transition: all 0.5s;
	text-align: center;
	font-size: 14px
}

.btn:hover {
	background-color: #c26169;
	box-shadow: 2px 2px 5px #c26169;

}

.kotak1 {
	position: absolute;
	width: 34vh;
	height: 34vh;
	background-color: #C26169;
	opacity: 0.8;
	border: none;
	border-radius: 35%;
	top: 0;
	right: 0;
	transform: translate(35%, -35%) rotate(45deg);
}

.kotak2 {
	position: absolute;
	width: 34vh;
	height: 34vh;
	background-color: #234B07;
	opacity: 0.8;
	border: none;
	border-radius: 35%;
	bottom: 0;
	right: 0;
	transform: translate(-80%, 60%) rotate(20deg);
	;
}


@media (max-width: 1030px) {

	.grid-container {
		grid-template-areas:
			'logo logo'
			'form form'
			'quote quote';
		grid-template-rows: auto auto auto;
	}

	.container:before {
		transform: translateX(-50%);
		left: 30%;
		top: 60%;
		right: initial;
		bottom: initial;
	}


	.logo img {
		width: 80px;
		height: 80px;
		display: inline-block;
		margin: 0 20px;
	}

	.form form {
		margin-top: 0px;
	}

	.quote {
		width: 60%;
		padding: 20px 0px 0 30px;
	}

	.quote h3 {
		font-size: 1rem;
	}

	.quote .tokoh {
		font-size: 0.9rem;
	}

	.kotak1 {
		width: 20vw;
		height: 20vw;
		border-radius: 34%;
		top: 20%;
		right: -3%;
	}

	.kotak2 {
		width: 20vw;
		height: 20vw;
		border-radius: 34%;
		bottom: 60%;
		left: 10%;
	}

	.maskot {
		display: none;
	}
}

@media (max-width: 567px) {
	.quote {
		width: 85%;
		margin-top: 20px;
	}

	.grid-container {
		min-height: 100vh;
		overflow: auto;
	}

	.logo {
		margin-top: 20px;
	}
}

/* width */
::-webkit-scrollbar {
	width: 1vmin;
	height: 1vmin;
	transition: all 0.5s ease;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 1vmin;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 1vmin;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
	width: 100%;
}
