@charset "UTF-8";

/* Header Section */
.apply-header {
  color:#000;
	text-align: center;
	padding: 104px 40px 120px;
}

.apply-title {
	font-size: 44px;
	font-weight: 600;
	color: #000;
	line-height: 128%;
	margin-bottom: 24px;
}

.apply-desc {
  opacity: 0.8;
	font-size: 24px;
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 76px;
}

.apply-notice {
	font-size: 28px;
	font-weight: 400;
	color: #000;
	line-height: 100%;
}

.form-section {
	padding: 120px 0 40px;
	border-bottom: 1px solid #E5E5E5;
}

.form-section:first-child {
	padding-top: 0;
}

/* Step Header */
.step-header {
	display: flex;
	align-items: center;
	gap: 16px;
  padding-bottom:40px;
}

.step-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	background: #F5F5F5;
	border-radius: 99px;
	font-size: 20px;
	font-weight: 600;
  line-height: 100%;
	color: #000;
}

.step-title {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	line-height: 128%;
}

/* Form Group */
.form-group {
  padding:48px 0;
  border-top: 1px solid rgba(0,0,0,0.16);
	border-bottom: 1px solid rgba(0,0,0,0.16);
}

.form-group + .form-group {border-top: 0;}

.form-group:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.form-label {
	display: block;
	font-size: 20px;
	font-weight: 700;
  line-height: 100%;
	color: #000;
	margin-bottom: 24px;
}

/* Radio Group */
.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 80px;
}

.radio-item {
	display: flex;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}

.radio-item input[type="radio"] {
	display: none;
}

.radio-custom {
	width: 32px;
	height: 32px;
	border: 2px solid #D9D9D9;
	border-radius: 50%;
	position: relative;
	transition: all 0.2s ease;
}

.radio-item input[type="radio"]:checked + .radio-custom {
	border-color: #000;
}

.radio-item input[type="radio"]:checked + .radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #000;
	border-radius: 50%;
}

.radio-text {
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

/* Input Group */
.input-group {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-row {
	display: flex;
	gap: 24px;
}

.form-col {
	flex: 1;
}


/* Form Footer */
.form-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	padding-top: 60px;
}

/* Checkbox */
.checkbox-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
	display: none;
}

.checkbox-custom {
	width: 28px;
	height: 28px;
	border: 1px solid #000;
	position: relative;
	transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
	background: #000;
	border-color: #000;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 10px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-text {
	font-size: 14px;
	font-weight: 400;
	color: #666;
}

.privacy-link {
	color: #666;
	text-decoration: underline;
}

.privacy-link:hover {
	color: #000;
}

/* STEP 3 Input Section */
.form-section-input {
	border-bottom: none;
  padding-top:80px;
}

.form-section-input .step-header {
	border-bottom: 1px solid rgba(0,0,0,0.16);
}

.input-row {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.input-row:last-child {
	border-bottom: none;
}

.input-col {
	flex: 1;
	display: flex;
  align-items: flex-start;
	gap: 24px;
}

.input-col.full {
	flex: 1;
}

.input-label {
	flex-shrink: 0;
	width: 95px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 140%;
  letter-spacing: -0.16px;
  padding-top:13px;
}

.input-label.required::before {
	content: '* ';
	color: #000;
}

.input-col + .input-col .input-label {
  width:auto;
}

/* Input Wrap with Clear Button */
.input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.input-wrap .form-input {
  padding-right: 32px;
}

.btn-clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: none;
  background: url('../images/common/btn-input-del.svg') center / contain no-repeat;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.btn-clear.show {
  opacity: 1;
  visibility: visible;
}

.btn-clear:hover {
  opacity: 0.7;
}

.form-input {
	flex: 1;
	width: 100%;
	height: 48px;
	border: none;
	border-bottom: 1px solid #D9D9D9;
	border-radius: 0;
	color:rgba(0,0,0,0.56);
	font-size: 16px;
	font-weight: 400;
	background: transparent;
	transition: all 0.2s ease;
}

.form-input::placeholder {
	color: #999;
}

.form-input:focus {
	outline: none;
	border-bottom-color: #000;
}

/* Phone Input */
.phone-input-group {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
}

.phone-input {
	flex: 1;
}

.phone-divider {
	color: #999;
	font-size: 16px;
}

/* Email Input */
.email-input-group {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.email-input {
	flex: 1;
}

.email-at {
	color: #000;
	font-size: 16px;
	font-weight: 400;
}

.email-domain-wrap {
	flex: 2;
	display: flex;
	align-items: center;
	gap: 12px;
}

.email-domain {
	flex: 3
}

.form-select {
	height: 48px;
	padding: 0 40px 0 16px;
	border: none;
	border-bottom: 1px solid #D9D9D9;
	border-radius: 0;
	font-size: 16px;
	font-weight: 400;
	color: #999;
  appearance: none;
  background-image: url('../images/main/icon_email_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 40px;
  color: rgba(0, 0, 0, 0.4);

}

.form-select:focus {
	outline: none;
	border-bottom-color: #000;
}

.email-select {
  flex:1;
}

/* Textarea */
.form-textarea {
	flex: 1;
	min-height: 120px;
	padding: 16px 0;
	border: none;
	border-bottom: 1px solid #D9D9D9;
	border-radius: 0;
	font-size: 16px;
	font-weight: 400;
	color: rgba(0,0,0,0.56);
	background: transparent;
	resize: vertical;
	font-family: inherit;
	line-height: 1.6;
  resize: none;
}

.form-textarea::placeholder {
	color: #999;
}

.form-textarea:focus {
	outline: none;
	border-bottom-color: #000;
}

/* Demo Checkbox */
.demo-checkbox .checkbox-custom {
	width: 28px;
	height: 28px;
}

.demo-checkbox .checkbox-text {
	font-size: 16px;
	color: #000;
}

/* Privacy Section */
.privacy-section {
	padding: 40px;
	background: #fafafa;
	border-radius: 16px;
}

.privacy-title {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	line-height: 100%;
	margin-bottom: 20px;
}

.privacy-content {
}

.privacy-content p {
  opacity: 0.8;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 140%;
}

.agree-checkbox {
	margin-top: 40px;
}

.agree-checkbox .checkbox-text {
	font-size: 16px;
	color: #000;
}

/* Checkbox Error State */
.checkbox-item input[type="checkbox"]:focus + .checkbox-custom,
.checkbox-item.error .checkbox-custom {
	border-color: #FF0000;
	box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

/* Form Footer */
.form-footer {
	display: flex;
	justify-content: center;
	padding: 40px 0 0;
}

.btn-submit {
	min-width: 240px;
	height: 60px;
	padding: 0 60px;
	background: #FFD700;
	border: none;
	border-radius: 40px;
	font-size: 20px;
	font-weight: 700;
	color: #000;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: #FFC700;
	transform: translateY(-2px);
}


.apply-list {
  margin-top:120px;
}
.apply-table {
  border-top: 3px solid #F3CB00;
}

.apply-table table {
  width: 100%;
  border-collapse: collapse;
}

.apply-table thead th {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  vertical-align: middle;
  padding: 24px 20px;
  border-bottom: 1px solid #E5E5E5;
}

.apply-table thead th:first-child {
  width: 5%;
}
.apply-table thead th:nth-child(2) {
  width: 10%;
}
.apply-table thead th:nth-child(4) {
  width: 20%;
}
.apply-table thead th:nth-child(5) {
  width: 13%;
}
.apply-table thead th:nth-child(6) {
  width: 10%;
}

.apply-table tbody td {
  color: rgba(0,0,0,0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  padding: 28px 20px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #E5E5E5;
}

.apply-table tbody td a:hover {
  text-decoration: underline;
}

.apply-table tbody td:nth-child(3) {
  text-align: left;
}

.apply-table tbody td a {
  position:relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apply-table tbody td a.lock {
	padding-left:20px;
}

/* Icon Lock */
.icon-lock {
  position:absolute; 
  left:0; 
  top:0;
  display: block;
  width: 16px;
  height: 16px;
  font-size:0;
  background: url("../images/common/icon_lock.svg") no-repeat center / contain;
}

/* Status Badge */
.status {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.status-complete {
  color: rgba(0,0,0,0.6);
}

.layer-popup .password-area {
    margin-top:40px;
}

.layer-popup .form-section {
    max-width:960px;
		padding:40px 0;
}

.layer-popup .form-section input:focus,
.layer-popup .form-section .form-textarea {
	border-color:rgba(0,0,0,0.16);
}





/* Responsive */
@media (max-width: 1000px) {  
	.apply-header {
		padding: 40px 0 60px;
	}

	.apply-title {
		font-size: 24px;
	}

	.apply-desc {
		font-size: 14px;
    font-weight: 500;    
		margin-bottom: 16px;
	}

	.apply-notice {
		font-size: 20px;
    line-height:140%;
    margin-top:60px;
	}

  .form-section {
    padding:100px 0 40px;
  }

	.apply-form {
		padding-bottom: 80px;
	}

	.step-header {
		padding-bottom: 20px;
	}

	.step-badge {
		padding: 16px 24px;
		font-size: 16px;
    font-weight: 600;
	}

	.step-title {
		font-size: 22px;
    line-height:100%;
	}

	.form-group {
		padding:48px 16px;
	}

	.form-label {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.radio-group {
    flex-direction: column;
		gap: 24px;
	}

  .radio-item {
    gap:12px;
  }

	.radio-text {
		font-size: 18px;
    font-weight: 500;
    line-height: 140%;
	}

	.form-row {
		flex-direction: column;
		gap: 16px;
	}

	.form-input {
    flex:auto;
		height: 48px;		
		font-size: 14px;
	}
  .email-select {
    flex:auto;
  }

	.form-footer {
		padding-top: 40px;
		gap: 24px;
	}

  .agree-checkbox {
    margin-top:24px;
  }

	.checkbox-text {
		font-size: 13px;
	}

	/* STEP 3 Input Section Mobile */
  .form-section-input {
    padding:80px 0 0;
  }

  .input-row {
    display:block;
  }

  .input-row .input-col + .input-col {
    padding-top:24px;
  } 

	.input-col {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		width: 100%;
	}

	.input-label {
		width: 100%;
		font-size: 16px;
	}

	.input-wrap {
		width: 100%;
	}

	.form-input {
		width: 100%;
		height: 46px;
		font-size: 16px;
    padding:0;
	}

	.phone-input-group {
		width: 100%;
	}

	.email-input-group {
		width: 100%;
		flex-wrap: wrap;
	}

	.email-input {
    flex:1;
		width: 50%;
	}

	.email-domain-wrap {
		width: 100%;
		gap: 8px;
	}

	.email-domain {
		width: 100%;
	}

	.form-select {
		width: 100%;
		height: 46px;
		font-size: 16px;
	}

	.form-textarea {
		width: 100%;
		min-height: 90px;
		font-size: 16px;   
    padding:8px 0; 
	}

	.demo-checkbox .checkbox-text {
		font-size: 16px;
	}

	.privacy-section {
		margin-top: 50px;
		padding: 20px;
	}

	.privacy-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.privacy-content p {
		font-size: 16px;
		line-height: 140%;
	}

	.form-footer {
		padding: 40px 0 0;
	}

	.btn-submit {
    min-width:140px;
		height: 52px;
		font-size: 16px;
    padding:16px 40px;
		border-radius: 40px;
	}


  .apply-list {
    margin-top:0;
    padding-bottom:40px;
  }
  .apply-table thead th {
    display: none;
    font-size:16px;
    padding:16px;
  }
  .apply-table thead th:nth-child(3),
  .apply-table thead th:nth-child(5), 
  .apply-table thead th:nth-child(6) {
    display:table-cell;
  }
  .apply-table thead th:nth-child(5) {
    width: 30%;
  }
  .apply-table thead th:nth-child(6) {
    width:20%;
  }

  .apply-table tbody td {
    display: none;
    font-size:16px;
    padding:16px;
  }
  .apply-table tbody td:nth-child(3),
  .apply-table tbody td:nth-child(5), 
  .apply-table tbody td:nth-child(6) {
    display:table-cell;
  }

	/* form popup */
	.layer-popup .password-area {
		margin-top:20px;
	}
	
	.layer-popup .form-section {
		padding:20px 0 0;
	}	

	.layer-popup .input-group {
		gap:12px;
	}

	.layer-popup .input-col {
		flex-direction: row;
	}

	.layer-popup .input-label {
		width:94px;
	}
	.layer-popup .input-col + .input-col .input-label {
		width:94px;
	}

	.input-row .input-col + .input-col {
		padding-top:12px;
	}


	#popupDetail .popup {
		max-width:calc(100% - 32px);
	}

}
