
.form-separate {
	margin: 15px 0 30px 0;
	width: 542px;
    border-top: 3px solid #000000;
}

.support-separate {
	margin: 51px 0 70px 0;
	width: 1200px;
    border-top: 1px solid #111111;
}

.delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.left-box {
  position: sticky;
  top: 100px; /* 👈 header 높이 고려 */
  align-self: flex-start;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.support-header {
  margin-bottom: 30px;
}

/* 전체 레이아웃 */
.support-content {
  display: flex;
  gap: 65px;
}


.info-card {
	width: 593px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.info-card img {
  width: 100%;
  display: block;
}

.overlay-text {
  position: absolute;
  inset: 0;
  color: #fff;
}

.support-title {
	position: relative;
    display: inline-block; /* 중요 */
    padding-left: 15px;
}

.support-title::before {
	content: "";
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    top: 50%;
    width: 5px;
    height: 25px;
    background-color: #433CC2;
}


/* 오른쪽 */
.right-box {
  flex: 1.2; 
}

.notice-desc {
	margin: 15px 0;
}

/* 안내 박스 */
.notice-box {
  background: #F9F9F9;
  padding: 40px;
  margin: 31px 0 50px 0;
}

.p-l-60 {
	padding-left: 60px;
}

.p-t-60 {
	padding-top:60px;
}

/* 폼 */
.form-section {
  margin-bottom: 30px;
}

.m-t-8 {
	margin-top: 8px;
}


.form-phone .phone {
	width: 100px;
	
}


.form-section select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  appearance: none; /* 기본 화살표 제거 */
}

.m-t-20 {
	margin-top: 20px;
}


.select-box {
  position: relative;
  width: 266px;
  height: 52px;
}

/* 화살표 커스텀 */
.select-box::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;

  width: 12px;
  height: 12px;

  background: url('/html/images/help/arrow-down.png') no-repeat center;
  background-size: contain;

  pointer-events: none;
}

.select-box.hide-arrow::after {
    display: none;
}


.hyphen {
	width: 8px;
	margin-top: 10px;
	color: #777777;
	
}

.select-box select {
  color: #777777;
  padding-left: 15px;
  font-size: 16px;
}

.form-text {
	font-size: 16px;
}

.date-input {
	width: 266px;
	height: 52px;
}

.m-b-150 {
	margin-bottom: 150px;
}


.m-b-60 {
	margin-bottom: 60px;
}

.m-b-50 {
	margin-bottom: 50px;
}

.m-t-50 {
	margin-top: 50px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-20 {
	margin-bottom: 20px;
}


.m-t-25 {
	margin-top: 25px;
}


.phone-inputs {
	width: 100px;
  display: flex;
  gap: 15px;
}

.phone-inputs input {
  flex: 1;
}

.form-section .send-form {
	height: 223px; 
}




.form-section .date-input{
	display: block;
	width: 266px;
}


.form-section input,
.form-section textarea {
  width: 100%;
  padding: 15px 0 15px 20px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
}

.form-label:after {
	content: " * ";
	color: #D02727;
	font-weight: 500;
	font-size: 18px;
}


.form-section input::placeholder,
.form-section textarea::placeholder {
  color: #777777;
  font-weight:400;
}

.phone {
  display: flex;
  gap: 10px;
}

.phone input {
  flex: 1;
}

/* textarea */
textarea {
  min-height: 120px;
  resize: none;
}


.upload-box {
  width: 93px;
  height: 93px;
  background: #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.upload-container {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}


.agree-desc li::before {
	content: "*";
  	margin-right: 5px;
}


/* 동의 */
.agree-box {
  margin: 20px 0;
}

.agree-box input[type="checkbox"] {
	color: #D7D7D7;
	border: 1px solid #D7D7D7;
  	border-radius: 3px;
	margin-right: 7px;
}

.agree-desc {
	height: 43px;
	padding: 25px 0 25px 25px;
	border-radius: 10px;
	background-color: #F9F9F9;
	
}


/* 버튼 */
.submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 30px;
  background: #433CC2;
  color: #fff;
  cursor: pointer;
}

/* 반응형 */
@media (max-width: 768px) {
	.m-b-60 {
		margin-bottom: 0px !important;
		
	}
	.p-t-60 {
		padding-top: 0px !important;
	}
	
	
	
	.form-separate,
  .support-separate,
  .info-card {
    width: 100% !important;
  }
  
  .left-box {
    position: static !important;
  }

  .support-content {
    flex-direction: column !important;
    gap: 30px !important;
  }

}