* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: Poppins;
	background:
		radial-gradient(circle at top, rgba(33, 172, 211, .15), transparent 40%),
		#f8fafc;
}

.service-wrapper {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-card {
	width: 90%;
	background: #fff;
	border-radius: 18px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.service-logo {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 25px;
}

.service-logo img {
	max-width: 260px;
}

h1,
p {
	text-align: center
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

input,
select,
textarea {
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	font-size: 14px;
}

.upload-box {
	border: 2px dashed #21acd3;
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	cursor: pointer;
	margin-bottom: 24px;
}

.upload-box i {
	font-size: 42px;
	color: #21acd3;
}

.upload-box input {
	display: none;
}

/* GDPR */
.gdpr-box {
	display: flex;
	align-items: stretch;
	border: 1px solid #dc2626;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 24px;
}

.gdpr-left {
	width: 50px;
	background: rgba(220, 38, 38, .2);
	display: flex;
	align-items: center;
	justify-content: center
}

.gdpr-right {
	flex: 1;
	background: rgba(220, 38, 38, .2);
	padding: 14px 16px;
	font-size: 13px;
	line-height: 1.45
}

.gdpr-right a {
	color: #dc2626;
	font-weight: 600
}

button {
	width: 100%;
	padding: 16px;
	border: none;
	border-radius: 16px;
	background: linear-gradient(135deg, #21acd3, #168aad);
	color: #fff;
	font-size: 16px;
	cursor: pointer
}

/* modal */
.modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	display: none;
	align-items: center;
	justify-content: center
}

.modal-content {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	width: 90%;
	max-width: 800px
}

.modal-scroll {
	max-height: 60vh;
	overflow: auto
}

@media(max-width:768px) {
	.grid-2 {
		grid-template-columns: 1fr
	}

	.service-card {
		padding: 24px
	}
}

.preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.preview-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.preview-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.preview-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(220,38,38,.9);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
