/*
* AWP Academy Mainstyle
* by Amri Hidayatulloh
*/

body {
	background: #f0f0f0;
}

.toast {
	position: fixed;
	z-index: 99999;
	top : 10px;
	left: 50%;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	font-family: sans-serif;
	transform: translate(-50%,0);
	display: none;
	box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
}
.toast.error {
	background: #aa3333;
}
.toast.success {
	background: var(--green-color);
}
.container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 80px;
}
.container .box {
	width: 700px;
	background: #fff;
	min-height: 200px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	border-radius: 10px;
	flex-wrap: wrap;
}
.container .box .left-segment {
	width: 45%;
	background: var(--red);
	position: relative;
	height: 400px;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
}
.container .box .left-segment img.base {
	position: absolute;
	top : 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center;
}
.container .box .left-segment .overlay {
	position: absolute;
	top : 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 400px;
	background: rgb(174,28,40);
	background: linear-gradient(11deg, rgba(174,28,40,0.8981967787114846) 0%, rgba(207,27,47,0.8673844537815126) 34%, rgba(235,23,50,0.4) 100%);	
}
.container .box .left-segment .logo {
	position: absolute;
	top : 0;
	left: 50%;
	width: 50%;
	padding: 30px 5%;
	z-index: 3;
	transform: translate(-50%,0);
}
.container .box .left-segment .logo img {
	width: 100%;
}
.container .box .right-segment {
	width: 50%;
	font-family: 'Gotham-Book';
}
.container .box .right-segment h1 {
	color: var(--red);
	font-size: 26px;
	margin-top: 30px;
	font-family: 'Gotham-Medium';
	margin-bottom: 10px;
}
.container .box .right-segment .label {
	font-size: 13px;
	color: #777;
}
.container .box .right-segment form {
	width: 100%;
	margin-top: 30px;
}
.container .box .right-segment .field {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 80%;
	padding: 3%;
	background: #f8f8f8;
	margin-bottom: 10px;
	border-radius: 5px;
}
.container .box .right-segment .field div {
	width: 20px;
	text-align: left;
	color: #777;
}
.container .box .right-segment .field input {
	width: 85%;
	margin-left: 5px;
	font-family: 'Gotham-Book';
	font-size: 14px;
	background: none;
	outline: none;
	border:none;
}
.container .box .right-segment button {
	background: var(--red);
	margin-top: 10px;
	border : none;
	outline: none;
	color: #fff;
	padding: 15px 40px;
	font-family: 'Gotham-Book';
	font-size: 14px;
	border-radius: 5px;
}
.container .box .right-segment button:hover {
	background: var(--darker-red);
}


@media(max-width: 768px) {
	.container {
	    width: 100%;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    padding-top: 50px;
	}
	.container .box {
    	width: 300px; 
	}
	.container .box .left-segment {
		width: 100%;
		background: var(--red);
		position: relative;
		height: 150px;
		border-radius: 10px 10px 0 0;
		overflow: hidden;
	}
	.container .box .right-segment {
	    width: 90%;
	    padding: 5%;
	    padding-top: 0;
	    padding-bottom: 30px;
	    font-family: 'Gotham-Book';
	    text-align: center;
	}
	.container .box .right-segment .field {
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	    width: 94%;
	    padding: 3%;
	    background: #f8f8f8;
	    margin-bottom: 10px;
	    border-radius: 5px;
	}
	.container .box .right-segment .field div {
		margin-left: 5px;
	}
	.container .box .right-segment .field input {
		font-size: 16px;
	}
}