/* Styling khusus Modal Card */
.custom-modal-content {
	border: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Header Biru Gradient dengan Bentuk Lengkung (Wave) */
.modal-header-bg {
	background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
	color: white;
	padding: 30px 20px 40px 20px;
	text-align: center;
	position: relative;
	border-bottom-left-radius: 50% 20px;
	border-bottom-right-radius: 50% 20px;
}

/* Logo Lingkaran */
.profile-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 4px solid white;
	object-fit: cover;
	background-color: white;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	margin-bottom: 15px;
}

/* Input Field Rounded Gradient Border / Custom Style */
.custom-input-group {
	position: relative;
}

.custom-input {
	border-radius: 50px !important;
	border: 1.5px solid #0099ff;
	padding: 12px 50px 12px 20px;
	font-size: 14px;
}

.custom-input:focus {
	border-color: #0056b3;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

.input-icon-btn {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #0088ff;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	z-index: 5;
}

/* Tombol Sign In Gradient */
.btn-signin {
	background: linear-gradient(to right, #00c6ff, #0072ff);
	border: none;
	color: white;
	border-radius: 20px;
	padding: 8px 30px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
	transition: all 0.3s ease;
}

.btn-signin:hover {
	opacity: 0.9;
	color: white;
}

/* Tombol Batal */
.btn-batal {
	background: #e0e0e0;
	border: none;
	color: #333;
	border-radius: 20px;
	padding: 8px 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-batal:hover {
	background: #d0d0d0;
}

/* Footer Biru */
.modal-footer-custom {
	background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
	color: white;
	padding: 15px 20px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top-left-radius: 50% 15px;
	border-top-right-radius: 50% 15px;
	margin-top: 20px;
}

.arrow-icon-btn {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
}