@import url("https://fonts.googleapis.com/css?family=Poppins:wght@400;600;700&display=swap");

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
}
body{
	min-height:100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("../../images/bk/oilref_bk.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}
.container{
	width: 420px;
	background: rgba(0, 0, 0, 0.1);
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, .2);
	padding: 30px 40px;
	backdrop-filter:blur(9px);
}
.container h1{
	font-size: 30px;
	text-align: center;
	font-weight:800;
}
.input-box{
	width: 100%;
	height: 50px;
	position: relative;
	margin: 30px 0;
}
.input-box input{
	width: 100%;
	height: 100%;
	padding: 20px 45px 20px 20px;
	background: transparent;
	outline: none;
	border: 2px solid rgba(255, 255, 255, .2);
	font-size: 16px;
	color: #ffffff;
}
.input-box input::placeholder{
	color: #ffffff;
}
.input-box i{
	font-size: 20px;
	position: absolute;
	right: 20px;
	top: 30%;
	transform: translate(-50%;);
}
.input-box input::focus{
	outline: 2px solid rgba(255, 255, 255, .2);
}
.login-btn{
	width: 100%;
	height: 45px;
	background: #ffffff;
	border:none;
	outline: none;
	box-shadow: 0 0 10px rgba(0 ,0, 0, 0.1);
	cursor: pointer;
	font-size: 16px;
	color: #000000;
	font-weight: 600;
}
.login-btn:hover{
	background: #e9e9e9;
}