.dr1059forms {
	padding: 120px 20px;
	background: radial-gradient(circle at top left, rgba(59, 130, 246, .12),
		transparent 40%),
		radial-gradient(circle at bottom right, rgba(168, 85, 247, .15),
		transparent 40%), linear-gradient(135deg, #050816, #0f172a, #050816);
}

.dr1059forms-inner {
	max-width: 1400px;
	margin: auto;
}

.dr1059forms-header {
	text-align: center;
	margin-bottom: 50px;
}

.dr1059forms-tag {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 50px;
	color: #8ab4ff;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .05);
}

.dr1059forms-title {
	margin: 20px 0 10px;
	font-size: 48px;
	color: #fff;
	font-weight: 800;
}

.dr1059forms-subtitle {
	color: #cbd5e1;
	max-width: 900px;
	margin: auto;
}

.dr1059forms-categories {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px;
	border: none;
}

.dr1059forms-radio {
	cursor: pointer;
}

.dr1059forms-radio input {
	display: none;
}

.dr1059forms-radio span {
	display: block;
	padding: 16px 28px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	color: #fff;
	transition: .3s;
}

.dr1059forms-radio input:checked+span {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-color: transparent;
}

.dr1059forms-body {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 30px;
}

.dr1059form-card {
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 30px;
	padding: 30px;
	transition: .35s;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.dr1059form-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 35px 80px rgba(59, 130, 246, .25);
}

.dr1059form-number {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 50px;
	background: rgba(59, 130, 246, .15);
	color: #8ab4ff;
	font-size: 12px;
}

.dr1059form-card h3 {
	color: #fff;
	margin: 18px 0 12px;
}

.dr1059form-card p {
	color: #cbd5e1;
	line-height: 1.7;
}

.dr1059form-files {
	margin-top: 25px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.dr1059file-btn {
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: #fff;
	font-weight: 700;
	transition: .3s;
}

.dr1059file-btn:hover {
	transform: translateY(-3px);
}

.dr1059forms-loading, .dr1059forms-empty, .dr1059forms-error,
	.dr1059forms-coming {
	grid-column: 1/-1;
	text-align: center;
	padding: 60px;
	border-radius: 30px;
	color: #fff;
	background: rgba(255, 255, 255, .05);
}

@media ( max-width :768px) {
	.dr1059forms {
		padding: 80px 15px;
	}
	.dr1059forms-title {
		font-size: 32px;
	}
	.dr1059forms-body {
		grid-template-columns: 1fr;
	}
	.dr1059forms-categories {
		flex-direction: column;
	}
}