/***************************************************
 * 전체 컨테이너 스타일
 ***************************************************/
.board.container {
    background-color: #000;
    color: #fff;
    box-sizing: border-box;
}

.form-container {
    max-width: 1300px; 
    margin: 0 auto;
}

/***************************************************
 * 상단 제목 영역
 ***************************************************/
.board_top .title h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px;
}

/***************************************************
 * 섹션(개인정보, 포트폴리오 등) 공통 스타일
 ***************************************************/
.section {
    margin-bottom: 120px;
}
.section.hope-activity {
	margin-bottom: 60px;
}
.section h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    background-color: #000; /* 제목 배경 */
    color: #fff;
    padding-bottom: 35px;
}

/***************************************************
 * 폼 그룹: (label + input) 한 줄(row) 구성
 ***************************************************/
.form-group {
    display: flex;
    border-bottom: 1px solid #fff;
}

.file-set {
	display: flex;
    flex-flow: column;
    width: calc(100% - 270px);
}

.file-attach-area {
	width: 100%;
    padding: 15px 20px;
    color: #a7a7a7;
    border-top: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-attach-area.type2 {
	width: calc(100% - 270px);
}

.file-attach-area .attach-box {
	width: 200px;
    height: 41px;
    border: 1px solid #6d6d6d;
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 0 10px;
    overflow: hidden;
}

.file-attach-area .attach-box label {
	position: absolute;
	left: -9999px;
}

.file-attach-area .attach-box input {
	display: none;
}
/***************************************************
 * 왼쪽 라벨 영역
 ***************************************************/
.form-group label {
	font-size: 20px;
    width: 270px;;
    min-width: 120px;
    background-color: #111;
    border-right: 1px solid #333;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin: 0;
    color: #ccc;
    font-weight: normal;
}

.form-group label ~ input {
	width: calc(100% - 270px);
}

/***************************************************
 * 오른쪽 입력 영역
 ***************************************************/
.form-group .form-control,
.form-group input[type="file"] {
    background-color: #000;
    border: none;
    color: #fff;
    padding: 25px 20px;
    box-sizing: border-box;
    font-size: 20px;
}

.form-group .form-control::placeholder {
	font-size: 14px;
    color: #999;
}

/***************************************************
 * 체크박스(개인정보 동의) 전용 스타일
 ***************************************************/
.checkbox-group {
    border-bottom: none !important;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}

/***************************************************
 * 버튼 영역
 ***************************************************/
.btn_wrap {
    text-align: center;
    padding-bottom: 120px;
}

.insertBtn {
    background-color: #FFC16F;
    border: none;
    color: black;
    width: 290px;
    height: 55px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

.Audition-section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    color: white;
    padding-top: 120px;
}

/* Left Section (Title) */
.left-section {
	margin-right: 312px;
}

.left-section h2 {
    font-size: 36px;
	font-weight: bold;
}

/* Right Section (Text) */
.right-section {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.right-section p {
    font-size: 16px;
    line-height: 2em;
    padding-bottom: 20px;
}

.highlight-text {
    margin-bottom: 84px;
}

.underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--yellow);
    font-size: 26px;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #FFC16F;
}

.image-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.main-image {
    display: flex;
    align-items: flex-start;
    gap: 96px;
}

.main-image img:last-child {
	margin-top: 305px;
}

@media (max-width: 768px) {
    .Audition-section {
        flex-direction: column;
        text-align: center;
        width: 90%;
    }

    .left-section, .right-section {
        width: 100%;
    }
}

section { padding: 0; }

.write-content {
	padding: 120px 0 0;
}

@media(max-width: 1024px) {
	.Audition-section { width: 100%; padding: 50px 20px 0; }
	.left-section h2 { padding-bottom: 20px; }
	.right-section p { text-align: center; }
	.highlight-text { text-align: center; }
	.main-image img:last-child { display: none; }
	.write-content { padding: 50px 20px 0; }	
	.form-group label { font-size: 16px; width: 120px; }
	.form-group label ~ input { width: calc(100% - 120px); }
	.section { margin-bottom: 50px; }
	.file-set { width: calc(100% - 120px); }
	.file-attach-area.type2 { width: calc(100% - 120px); }
	.file-attach-area .attach-box { width: 130px; }
	.btn_wrap { padding-bottom: 50px; }
}
