.request-main h1 {
	margin-bottom: 20px;
}

.request-main .request-title p {
	color: rgba(13, 17, 55, 0.6);
	margin-bottom: 48px;
}

.request-main .param-type {
	margin-bottom: 40px;
	font-weight: 200;
	font-size: 2rem;
	line-height: 3.2rem;
	padding: 30px 28px;
	background-color: rgba(13, 17, 55, 0.04);
	border: 1px solid rgba(13, 17, 55, 0.6);
	border-radius: 4px;
}

.request-main .request-form {
	width: 100%;
}

.request-main .form-section {
	margin-bottom: 64px;
}

.request-main .form-section:last-child {
	margin-bottom: 0;
}

.request-main .form-label {
	display: block;
	margin-bottom: 24px;
}

.request-main .form-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
}

.request-main .form-btn-group label {
	width: calc((100% - (24px * 5)) / 6);
	cursor: pointer;
}

.request-main .form-btn-group label input[type="checkbox"],
.request-main .form-btn-group label input[type="radio"] {
	display: none;
}

/* 공통 버튼 사용 예정*/
.request-main .form-btn-group label span {
	display: block;
	width: 100%;
	padding: 16px 0;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 200;
	color: rgba(13, 17, 55, 0.6);
	border: 1px solid rgba(13, 17, 55, 0.2);
	border-radius: 24px;
	transition: all 0.2s ease;
}

.request-main .form-btn-group input[type="checkbox"]:checked + span,
.request-main .form-btn-group input[type="radio"]:checked + span {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.request-main .form-row-group {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 44px;
}

.request-main .form-row {
	flex: 1 1 40%;
	min-width: 220px;
	display: flex;
	flex-direction: column;
}

.request-main .form-row label {
	font-size: 1.6rem;
	line-height: 2.2rem;
	margin-bottom: 2px;
}

.request-main .form-row input[type="text"],
.request-main .form-row input[type="email"] {
	border: none;
	border-bottom: 1px solid rgba(13, 17, 55, 0.4);
	color: var(--color-primary);
	font-size: 1.6rem;
	line-height: 2.2rem;
	padding: 6px 9px;
	outline: none;
	transition: border 0.2s;
}

.request-main .form-row input[type="text"]::placeholder,
.request-main .form-row input[type="email"]::placeholder {
	opacity: 1;
}

.request-main .form-row input[type="text"]:focus,
.request-main .form-row input[type="email"]:focus {
	border-bottom: 1px solid rgba(13, 17, 55, 0.6);
}

.request-main .required {
	color: var(--color-system);
}

.request-main textarea {
	margin-top: 12px;
	width: 100%;
	border: 1px solid rgba(13, 17, 55, 0.4);
	border-radius: 4px;
	font-size: 1.6rem;
	line-height: 2.2rem;
	padding: 6px 9px;
	resize: vertical;
	min-height: 340px;
	margin-bottom: 20px;
	background: #fff;
	transition: border 0.2s;
	outline: none;
	font-family: 'Pretendard', sans-serif !important;
	font-weight: 300;
	color: rgba(13, 17, 55) !important;
	box-sizing: border-box;
}

.request-main textarea::placeholder,
.request-main textarea::-webkit-input-placeholder,
.request-main textarea::-moz-placeholder,
.request-main textarea:-moz-placeholder,
.request-main textarea:-ms-input-placeholder {
	font-size: 1.6rem !important;
	line-height: 2.2rem !important;
	font-family: 'Pretendard', sans-serif !important;
	opacity: 1 !important;
}

.request-main textarea:focus {
	border-color: rgba(13, 17, 55, 0.6);
}

.request-main #dropZone {
	margin-top: 12px;
	padding: 25px;
  	border: 1px solid rgba(13, 17, 55, 0.2);
  	border-radius: 4px;
  	text-align: center;
  	color: rgba(13, 17, 55, 0.6);
 	cursor: pointer;
}

.request-main #dropZone .file-box {
	align-items: center;
}

.request-main #dropZone .file-box label {
	line-height: 1.6rem;
	color: rgba(13, 17, 55, 0.6);
	font-weight: 200;
    margin-bottom: 0;
    margin-right: 52px; 
}

.request-main #dropZone .file-box #fileName {
	color: var(--color-primary);
	margin-right: 10px;
}

.request-main #dropZone .file-box #clearFileBtn {
	width: 16px;
	height: 16px;
	background: url('../../images/egovframework/icon/file-close.png') no-repeat center center;
	background-size: 16px 16px;
	border: none;
	cursor: pointer;
}

.request-main .form-agree {
	display: flex;
	flex-direction: column;
	font-size: 1.6rem;
	line-height: 1.6rem;
	margin-bottom: 30px;
	padding: 0 16px;
	background-color: rgba(13, 17, 55, 0.04);
}

.request-main .form-agree .agree-row {
	border-radius: 4px;
	display: flex;
	align-items: center;
}

.request-main .form-agree .agree-row .agree-open {
	margin-left: auto;
	cursor: pointer;
	border: none;
	width: 28px;
	height: 58px;
	text-indent: -9999px;
	background-color: transparent;
	flex-grow: 1;
	position: relative;
}

.request-main .form-agree .agree-row .agree-open::before {
	position: absolute;
	top: 50%;
	right: 0;
	content: '';
	background: url('../../images/egovframework/icon/agree.png') no-repeat center center;
	background-size: 16px 8px;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	transition: all 0.3;
}

.request-main .form-agree .agree-row .agree-open.active::before {
	transform: translateY(-50%) rotate(180deg);
}

.request-main .form-agree .agree-desc {
	padding-bottom: 36px;
	color: rgba(13, 17, 55, 0.6);
	font-size: 1.4rem;
	line-height: 2rem;
    height: 200px;
    overflow-y: scroll;
}

.request-main .form-check-input {
	display: none;
}

.request-main .form-check-input + label {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	user-select: none;
}

.request-main .form-agree label span {
	font-weight: 200;
}

.request-main .form-check-input + label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 14px;
	height: 14px;
	border: 1px solid rgba(13, 17, 55, 0.4);
	border-radius: 2px;
	background: var(--color-white-100);
	box-sizing: border-box;
	transition: all 0.2s ease;
}

.request-main .form-check-input:checked + label::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 2px;
	width: 4px;
	height: 8px;
	border: 1px solid var(--color-white-100);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.request-main .form-check-input:checked + label::before {
	background-color: var(--color-primary);
}

.request-main .request-submit {
	width: 100%;
	background: var(--color-primary);
	color: var(--color-white-100);
	border: none;
	border-radius: 32px;
	padding: 20px 0;
	font-size: 1.8rem;
	line-height: 1.8rem;
	font-weight: 400;
	text-align: center;
	cursor: pointer;
}

.request-main .form-file > label {
	padding-left: 16px;
	background: url('../../images/egovframework/icon/file.png') no-repeat left center;
	background-size: 12px 14px;
}

/* 반응형 */
@media (max-width: 768px) {
	.request-main .request-title p {
		font-size: 1.4rem;
		line-height: 2rem;
		margin-bottom: 36px;
	}
	
	.request-main .form-label {
		font-size: 1.8rem;	
	}
	
	.request-main .form-btn-group {
		gap: 10px 16px;
	}
	
	.request-main .form-btn-group label {
		width: calc((100% - (16px * 2)) / 3);
	}
	
	.request-main .form-row-group {
		flex-direction: column;
		gap: 16px;
	}
	
	.request-main textarea {
		min-height: 200px;
		margin: 6px 0 16px;
	}
}

@media (max-width: 480px) {
	.request-main .form-btn-group label {
		width: calc((100% - (16px * 1)) / 2);
	}
}