@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
	font-family: 'Poppins', sans-serif;
	background: #f4f4f4;
	color: #4A4A4A;
}


#ikBasvuruFormu {
	background: #EEEEEE;
	border-radius: 16px;
}

#ikBasvuruFormu .ik-section {
	background: #fff;
	border-radius: 12px;
	padding: 28px 28px 20px;
	margin-bottom: 20px;
}

#ikBasvuruFormu .ik-section-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #00B5BF;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #00B5BF;
}

#ikBasvuruFormu .ik-sub-title {
	font-size: .95rem;
	font-weight: 600;
	color: #4A4A4A;
	margin-bottom: 12px;
}

#ikBasvuruFormu .ik-section-desc {
	font-size: .85rem;
	color: #6f6f6f;
	margin-bottom: 12px;
}

#ikBasvuruFormu .ik-label {
	display: block;
	font-size: .85rem;
	font-weight: 500;
	color: #4A4A4A;
	margin-bottom: 6px;
}

#ikBasvuruFormu .ik-required {
	color: #e74c3c;
}

#ikBasvuruFormu .ik-input {
	display: block;
	width: 100%;
	border: 1px solid #d0d0d0;
	background: #f9f9f9;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: .9rem;
	color: #4A4A4A;
	font-family: 'Poppins', sans-serif;
	transition: border-color .25s ease, box-shadow .25s ease;
	outline: none;
	-webkit-appearance: none;
}

#ikBasvuruFormu .ik-input:focus {
	border-color: #00B5BF;
	box-shadow: 0 0 0 3px rgba(0, 181, 191, .15);
	background: #fff;
}

#ikBasvuruFormu .ik-input::placeholder {
	color: #b0b0b0;
}

#ikBasvuruFormu .ik-input-sm {
	padding: 8px 14px;
	font-size: .82rem;
}

#ikBasvuruFormu .ik-textarea {
	resize: vertical;
	min-height: 60px;
}

#ikBasvuruFormu .ik-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}

#ikBasvuruFormu .ik-radio-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: .88rem;
	color: #4A4A4A;
	padding: 8px 18px;
	border: 1px solid #d0d0d0;
	border-radius: 50px;
	background: #f9f9f9;
	transition: all .2s ease;
	user-select: none;
}

#ikBasvuruFormu .ik-radio-label:hover {
	border-color: #00B5BF;
	background: #f0fcfc;
}

#ikBasvuruFormu .ik-radio-label input[type="radio"] {
	display: none;
}

#ikBasvuruFormu .ik-radio-custom {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #c0c0c0;
	position: relative;
	flex-shrink: 0;
	transition: all .2s ease;
}

#ikBasvuruFormu .ik-radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: #00B5BF;
	transform: translate(-50%, -50%);
	transition: all .2s ease;
}

#ikBasvuruFormu .ik-radio-label input[type="radio"]:checked + .ik-radio-custom {
	border-color: #00B5BF;
}

#ikBasvuruFormu .ik-radio-label input[type="radio"]:checked + .ik-radio-custom::after {
	width: 10px;
	height: 10px;
}

#ikBasvuruFormu .ik-radio-label:has(input[type="radio"]:checked) {
	border-color: #00B5BF;
	background: #e6f9fa;
	color: #008a92;
	font-weight: 500;
}

#ikBasvuruFormu .ik-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: .88rem;
	color: #4A4A4A;
	line-height: 1.5;
	user-select: none;
}

#ikBasvuruFormu .ik-checkbox-label input[type="checkbox"] {
	display: none;
}

#ikBasvuruFormu .ik-checkbox-custom {
	width: 22px;
	height: 22px;
	min-width: 22px;
	border-radius: 6px;
	border: 2px solid #c0c0c0;
	position: relative;
	flex-shrink: 0;
	margin-top: 1px;
	transition: all .2s ease;
}

#ikBasvuruFormu .ik-checkbox-custom::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 7px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity .15s ease;
}

#ikBasvuruFormu .ik-checkbox-label input[type="checkbox"]:checked + .ik-checkbox-custom {
	background: #00B5BF;
	border-color: #00B5BF;
}

#ikBasvuruFormu .ik-checkbox-label input[type="checkbox"]:checked + .ik-checkbox-custom::after {
	opacity: 1;
}

#ikBasvuruFormu .ik-kvkk-box {
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 24px 28px;
	max-height: 400px;
	overflow-y: auto;
	margin-bottom: 20px;
	font-size: .82rem;
	line-height: 1.7;
	color: #555;
}

#ikBasvuruFormu .ik-kvkk-box::-webkit-scrollbar {
	width: 6px;
}

#ikBasvuruFormu .ik-kvkk-box::-webkit-scrollbar-track {
	background: #eee;
	border-radius: 3px;
}

#ikBasvuruFormu .ik-kvkk-box::-webkit-scrollbar-thumb {
	background: #00B5BF;
	border-radius: 3px;
}

#ikBasvuruFormu .ik-kvkk-box p {
	margin-bottom: 10px;
}

#ikBasvuruFormu .ik-kvkk-box ul {
	padding-left: 22px;
	margin-bottom: 10px;
}

#ikBasvuruFormu .ik-kvkk-box ul li {
	margin-bottom: 4px;
}

#ikBasvuruFormu .ik-kvkk-box hr {
	border: none;
	border-top: 2px solid #00B5BF;
	margin: 20px 0;
	opacity: .4;
}

#ikBasvuruFormu .ik-kvkk-onay {
	padding: 16px 20px;
	background: #e6f9fa;
	border: 1px solid #b2e8eb;
	border-radius: 10px;
}

#ikBasvuruFormu .ik-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
}

#ikBasvuruFormu .ik-table thead th {
	background: #00B5BF;
	color: #fff;
	font-size: .8rem;
	font-weight: 500;
	padding: 12px 14px;
	text-align: left;
	border: none;
}

#ikBasvuruFormu .ik-table tbody td {
	padding: 6px 8px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
	font-size: .85rem;
}

#ikBasvuruFormu .ik-table tbody tr:last-child td {
	border-bottom: none;
}

#ikBasvuruFormu .ik-table tbody tr:hover {
	background: #f7fdfd;
}

#ikBasvuruFormu .ik-table-label {
	font-weight: 500;
	color: #4A4A4A;
	white-space: nowrap;
	padding-left: 14px !important;
	background: #f9f9f9;
	min-width: 100px;
}

#ikBasvuruFormu .ik-table-input {
	width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 10px;
	font-size: .82rem;
	color: #4A4A4A;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

#ikBasvuruFormu .ik-table-input:focus {
	border-color: #00B5BF;
	box-shadow: 0 0 0 2px rgba(0, 181, 191, .12);
}

#ikBasvuruFormu .ik-select-sm {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 10px;
	font-size: .82rem;
	color: #4A4A4A;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	outline: none;
	cursor: pointer;
	min-width: 100px;
	transition: border-color .2s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 28px;
}

#ikBasvuruFormu .ik-select-sm:focus {
	border-color: #00B5BF;
}

#ikBasvuruFormu .ik-inline-group {
	display: flex;
	align-items: center;
	gap: 6px;
}

#ikBasvuruFormu .ik-inline-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #00B5BF;
	color: #fff;
	font-size: .75rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

#ikBasvuruFormu .ik-inline-group .ik-table-input {
	flex: 1;
}

#ikBasvuruFormu .ik-inline-group .ik-select-sm {
	flex: 0 0 110px;
}

#ikBasvuruFormu .ik-file-area {
	position: relative;
}

#ikBasvuruFormu .ik-file-input {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

#ikBasvuruFormu .ik-file-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	border: 2px dashed #c0c0c0;
	border-radius: 12px;
	background: #f9f9f9;
	text-align: center;
	cursor: pointer;
	transition: all .25s ease;
}

#ikBasvuruFormu .ik-file-area:hover .ik-file-label,
#ikBasvuruFormu .ik-file-input:focus + .ik-file-label {
	border-color: #00B5BF;
	background: #f0fcfc;
}

#ikBasvuruFormu .ik-file-icon {
	margin-bottom: 10px;
}

#ikBasvuruFormu .ik-file-text {
	font-size: .88rem;
	color: #555;
}

#ikBasvuruFormu .ik-file-text strong {
	color: #00B5BF;
}

#ikBasvuruFormu .ik-file-hint {
	font-size: .75rem;
	color: #999;
	margin-top: 4px;
}

#ikBasvuruFormu .ik-file-name {
	display: none;
	margin-top: 10px;
	padding: 10px 16px;
	background: #e6f9fa;
	border: 1px solid #b2e8eb;
	border-radius: 8px;
	font-size: .82rem;
	color: #008a92;
}

#ikBasvuruFormu .ik-captcha-img {
	border-radius: 8px;
	border: 2px solid #e0e0e0;
	vertical-align: middle;
}

#ikBasvuruFormu .ik-captcha-btn {
	border: none;
	background: #f0f0f0;
	border-radius: 8px;
	padding: 8px 12px;
	margin-left: 8px;
	cursor: pointer;
	vertical-align: middle;
	transition: background .2s ease;
}

#ikBasvuruFormu .ik-captcha-btn:hover {
	background: #e0e0e0;
}

#ikBasvuruFormu .ik-captcha-btn img {
	width: 20px;
	height: 20px;
}

#ikBasvuruFormu .btn-primary {
	background: #00B5BF;
	border: none;
	border-radius: 50px;
	padding: 12px 40px;
	font-size: .95rem;
	font-weight: 500;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: background .25s ease, transform .15s ease, box-shadow .15s ease;
}

#ikBasvuruFormu .btn-primary:hover {
	background: #009aa3;
	transform: scale(1.03);
	box-shadow: 0 4px 15px rgba(0, 181, 191, .35);
}

#ikBasvuruFormu .btn-primary:active {
	background: #008a92;
	transform: scale(.98);
}

@media (max-width: 768px) {
	#ikBasvuruFormu {
		padding: 20px 16px !important;
	}

	#ikBasvuruFormu .ik-section {
		padding: 20px 16px 14px;
	}

	#ikBasvuruFormu .ik-radio-group {
		gap: 4px;
	}

	#ikBasvuruFormu .ik-radio-label {
		padding: 6px 14px;
		font-size: .82rem;
	}

	#ikBasvuruFormu .ik-kvkk-box {
		max-height: 280px;
		padding: 16px 18px;
	}

	#ikBasvuruFormu .ik-inline-group {
		flex-wrap: wrap;
	}

	#ikBasvuruFormu .ik-inline-group .ik-select-sm {
		flex: 1 1 100%;
	}

	#ikBasvuruFormu .ik-table {
		font-size: .78rem;
	}

	#ikBasvuruFormu .ik-file-label {
		padding: 24px 16px;
	}
}

#ikBasvuruFormu .ik-form-mesaj {
	padding: 16px 22px;
	border-radius: 10px;
	font-size: .88rem;
	line-height: 1.5;
	margin-bottom: 20px;
	animation: ikMesajGir .35s ease;
}

#ikBasvuruFormu .ik-mesaj-success {
	background: #d4edda;
	border: 1px solid #b1dfbb;
	color: #155724;
}

#ikBasvuruFormu .ik-mesaj-error {
	background: #f8d7da;
	border: 1px solid #f1aeb5;
	color: #842029;
}

@keyframes ikMesajGir {
	from { opacity: 0; transform: translateY(-10px); }
	to   { opacity: 1; transform: translateY(0); }
}

#ikBasvuruFormu .btn-primary:disabled {
	background: #88d8dc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

#ikBasvuruFormu input[type="tel"]:invalid {
	border-color: #e74c3c;
}
