@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	overflow: hidden;
}

body {
	align-items: center;
	justify-content: center;
}

@media (max-width: 500px) {
	.container {
		height: 200px;
		border-radius: 10px;
		position: relative;
		max-width: 450px;
		width: 200px;
		background: rgba(255, 255, 255, 0.3);
		padding: 40px 30px;
		border: 0.1rem outset #fff;
		perspective: 2700px;
	}
}

body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
}

.container {
	height: 400px;
	border-radius: 10px;
	position: relative;
	max-width: 850px;
	width: 400px;
	background: rgba(255, 255, 255, 0.3);
	padding: 40px 30px;
	border: 0.1rem outset #fff;
	perspective: 2700px;
}

.input-boxes {
	margin-top: 30px;
}

.input-box {
	display: flex;
	align-items: center;
	height: 50px;
	width: 100%;
	margin: 10px 0;
	position: relative;
}

.input-box input {
	height: 100%;
	width: 100%;
	outline: none;
	border: 0.1rem outset #fff;
	border-radius: 5px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.input-box i {
	padding: 5px;
	position: absolute;
	color: #000;
	font-size: 17px;
}

.text a:hover {
	text-decoration: underline;
}

.button input {
	color: #000;
	background: #fff;
	padding: 0;
	cursor: pointer;
	transition: all 0.4s ease;
}

.button {
	color: #fff;
	margin-top: 40px;
}

.login-form {
	align-items: center;
	align-content: center;
	color: #fff;
}

.title {
	position: relative;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-shadow: -2px 2px rgba(0, 0, 0, 0.8);
}

.button input:hover {
	color: #fff;
	border: none;
	background: #c40c0c;
}

/* Video Background */
.video {
	position: fixed;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	object-fit: cover;
	filter: brightness(0.6);
	/* Optional: Menambahkan efek gelap pada video */
}

/* Content overlay */
.content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
}

/* White Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	opacity: 0.1;
	/* Set opacity to 0.1 */
	z-index: -1;
}
