html,
body {
	height: 100%;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: #ffffff;
	color: #333;
}

/* --- 1. ANIMASI MASUK --- */
.card-register {
	border-radius: 20px !important;
	animation: scaleIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes scaleIn {
	from {
		transform: scale(0.95);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* --- 2. PERBAIKAN KOLOM INPUT (Clean Look) --- */
.input-group-text,
.input-group .form-control,
.input-group .btn-white {
	border-color: #dee2e6;
	transition: all 0.2s ease;
}

.input-group .btn-white {
	background-color: #fff;
}

.input-group .form-control:focus {
	box-shadow: none !important;
	border-color: #dee2e6 !important;
}

/* Menjaga border group tetap berwarna biru bawaan bootstrap secara solid saat aktif */
.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control,
.input-group:focus-within .btn-white {
	border-color: #86b7fe !important;
}

/* Tambahan Clip-Path agar bayangan focus ring menyatu rapi dan berurutan */
.input-group:focus-within .input-group-text {
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
	clip-path: inset(-10px 0px -10px -10px);
}

.input-group:focus-within .form-control {
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
	clip-path: inset(-10px 0px -10px 0px);
}

.input-group:focus-within .btn-white {
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
	clip-path: inset(-10px -10px -10px 0px);
	position: relative;
	z-index: 5 !important; /* Menaikkan lapisan tombol agar aman dari hambatan tombol floating */
}

/* Efek hover khusus tombol mata */
.input-group .btn-white:hover {
	background-color: #f8f9fa;
}

.input-group .btn-white:hover #eyeIcon {
	color: #0d6efd !important;
}

/* Style untuk Button Submit */
.btn-primary {
	background-color: #0d6efd;
	border: none;
	transition: background 0.2s;
}

.btn-primary:hover {
	background-color: #0b5ed7;
}
