#akses_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8); /* Redup */
	z-index: 999; /* Pastikan di atas elemen lain */
	display: none;
}

#login,
#register {
	position: fixed;
	top: 50%;
	left: 75%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.7);
	border-radius: 22px;
	backdrop-filter: blur(3px);
	width: 90vw;
	max-width: 400px;
	border: 3px solid rgba(152, 151, 80, 0.5);
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

#tbl_login {
	width: 400px;
	border-spacing: 15px;
	padding: 15px;
}

#tbl_login td {
	width: 33.3%;
}

.border-input {
	position: relative;
	outline: none;
	font-size: 0.8em;
	color: #162938;
	height: 35px;
	width: 100%;
	margin: 15px 0;
	border: none;
}

.border-input:focus-within {
	background: rgba(255, 255, 255, 0.5) !important;
	color: black;
}

#tbl_register {
	/* width: 400px; */
	border-spacing: 15px;
	padding: 15px;
}

#tbl_register td {
	width: 33.3%;
}

#option_male {
	width: 100%;
	color: #162938;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	cursor: pointer;
	font-size: 1.3em;
	text-align: center;
	border-right: 1px solid #ddd;
}

#option_female {
	width: 100%;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
	text-align: center;
	font-size: 1.3em;
	color: #162938;
	cursor: pointer;
}

.icon-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background: #162938;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
}

@media (max-width: 900px) {
	#login,
	#register {
		width: 95vw;
		padding: 15px;
		left: 50%;
	}
}
