 /* Custom CSS - No external imports */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.qr {
	background-color: #ffffff;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 80px;
	padding-bottom: 100px;
}
.qr-container {
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 90%;
	max-width: 1000px;
	display: flex;
	flex-direction: row;
}
.qr-section {
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f8f9fa;
	width: 45%;
	position: relative;
	overflow: hidden;
}
.qr-section::before {
	content: '';
	position: absolute;
	top: -50px;
	left: -50px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: rgba(167, 119, 227, 0.1);
}
.qr-section::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgba(110, 142, 251, 0.1);
}
.qr-code {
	width: 200px;
	height: 200px;
	background-color: white;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}
.qr-title {
	margin-top: 20px;
	color: #333;
	font-weight: 600;
	text-align: center;
	position: relative;
	z-index: 2;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.qr-subtitle {
	margin-top: 10px;
	color: #666;
	font-size: 0.9rem;
	text-align: center;
	position: relative;
	z-index: 2;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.details-section {
	padding: 40px;
	width: 55%;
	position: relative;
}
.bank-logo {
	width: 60px;
	height: 60px;
	background-color: #6e8efb;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: white;
	font-weight: bold;
	font-size: 1.5rem;
}
.details-title {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 25px;
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.details-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, #6e8efb, #a777e3);
	border-radius: 2px;
}
.detail-item {
	margin-bottom: 20px;
}
.detail-label {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.detail-value {
	font-size: 1.1rem;
	color: #333;
	font-weight: 500;
	padding: 10px 15px;
	background-color: #f8f9fa;
	border-radius: 8px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	border-left: 3px solid #6e8efb;
}
.copy-btn {
	background: linear-gradient(90deg, #d0aa65, #d0a966);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 30px;
	font-weight: 400;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 5px 15px rgba(110, 142, 251, 0.3);
}
.copy-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(110, 142, 251, 0.4);
}
.copy-icon {
	width: 16px;
	height: 16px;
}
.copy-notification {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: white;
	padding: 10px 20px;
	border-radius: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.show-notification {
	opacity: 1;
}
/* Decorative elements */
.decorative-circle {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
}
.circle-1 {
	width: 120px;
	height: 120px;
	background-color: rgba(110, 142, 251, 0.1);
	top: -60px;
	right: 30px;
}
.circle-2 {
	width: 80px;
	height: 80px;
	background-color: rgba(167, 119, 227, 0.1);
	bottom: 20px;
	left: -40px;
}
/* Responsive Design */
@media (max-width: 768px) {
	.qr-container {
		flex-direction: column;
	}
	.qr-section, .details-section {
		width: 100%;
	}
	.qr-section {
		padding: 30px;
	}
	.qr-code {
		width: 180px;
		height: 180px;
	}
	.details-section {
		padding: 30px;
	}
}
@media (max-width: 480px) {
	.qr-section {
		padding: 20px;
	}
	.qr-code {
		width: 150px;
		height: 150px;
	}
	.details-section {
		padding: 20px;
	}
	.details-title {
		font-size: 1.5rem;
	}
	.detail-value {
		font-size: 1rem;
	}
}