@charset "utf-8";

header .btm nav a {
    font-size: 40px;
    color: #000;
    margin: 0px 62px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    height: 100%;
    padding-top: 35px;
}

/* 동의서 전용 스타일 */
.consent-form-container {
    width: 100%;
    margin: 0 auto;
    font-family: "NotoSansKR", sans-serif;
}

    .consent-form-container h1 {
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 20px;
    }

.consent-title {
    text-align: center;
    background-color: #e6eef9;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.consent-text {
    margin: 20px 0;
    line-height: 1.5;
}

.consent-checkbox-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.consent-checkbox {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.consent-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px 0;
}

    .consent-table th,
    .consent-table td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: center;
    }

    .consent-table th {
        background-color: #f0f0f0;
    }

.consent-confirmation {
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.consent-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.consent-option {
    display: flex;
    align-items: center;
}

.consent-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

/* 새로운 동의서 디자인 스타일 - 이름이 겹치지 않도록 클래스명 수정 */
.new-consent-container {
    width: 100%;
    margin: 50px 0;
    font-family: "NotoSansKR", sans-serif;
}

.new-consent-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 30px 0 20px;
}

.new-consent-subtitle {
    text-align: center;
    background-color: #e7f1ff;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #1a6ed3;
}

.new-consent-text {
    line-height: 1.6;
    margin: 15px 0;
    font-size: 16px;
}

.new-consent-checkbox-item {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

/* CSS 네모 스타일 - 체크박스 대체 */
.css-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    background-color: #fff;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

    .css-checkbox.checked {
        background-color: #186ac7;
        border-color: #186ac7;
        position: relative;
    }

        .css-checkbox.checked::after {
            content: "";
            position: absolute;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            top: 2px;
            left: 6px;
            transform: rotate(45deg);
        }

.new-consent-checkbox-item label {
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
}

.new-consent-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

    .new-consent-table th {
        background-color: #f0f7ff;
        color: #333;
        font-weight: 500;
        text-align: center;
        padding: 12px 15px;
        border: 1px solid #ddd;
    }

    .new-consent-table td {
        background-color: #fff;
        color: #555;
        padding: 12px 15px;
        text-align: center;
        border: 1px solid #ddd;
        font-size: 15px;
        line-height: 1.4;
    }

.new-consent-notice {
    font-size: 14px;
    color: #666;
    margin: 15px 0;
    line-height: 1.5;
}

.new-consent-confirmation {
    background-color: #f0f7ff;
    border: 1px solid #1a6ed3;
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

    .new-consent-confirmation p {
        font-size: 17px;
        color: #1a6ed3;
        font-weight: 500;
        margin-bottom: 15px;
    }

.new-consent-options {
    display: flex;
    justify-content: center;
    gap: 40px;
}

    .new-consent-options label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .new-consent-options .css-checkbox {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

.new-consent-footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    min-width: 150px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100px;
}

.btn-primary {
    background-color: #186ac7;
    color: #fff;
    border: 1px solid #186ac7;
}

    .btn-primary:hover {
        background-color: #1258a5;
    }

.btn-secondary {
    background-color: #fff;
    color: #186ac7;
    border: 1px solid #186ac7;
}

    .btn-secondary:hover {
        background-color: #f0f0f0;
    }

/* 단계 표시기 스타일 */
.progress-step-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    position: relative;
    max-width: 1200px;
}

.progress-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 120px;
}

.progress-step-number {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

    .progress-step-number.active {
        color: #333;
    }

.progress-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background-color: #e0e0e0;
    color: white;
}

    .progress-step-circle.active {
        background-color: #333;
    }

    .progress-step-circle.completed {
        background-color: #333;
    }

.progress-step-title {
    font-size: 14px;
    text-align: center;
    color: #555;
}



.progress-step-divider {
    height: 2px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    border-top: 2px dashed #e0e0e0;
    margin-top: 33px;
}

/* 체크 아이콘 */
.progress-check-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* 하단 구분선 */
.progress-divider {
    height: 1px;
    background-color: #ddd;
    margin: 50px 0;
}

/* 폼 스타일 */
.form-section {
    margin: 40px 0;
}

.form-title {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.section-circle {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    color: #d1dff3;
}

/* 변경된 info-table 스타일 */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

    .info-table th {
        background-color: #f2f6fc;
        color: #333;
        font-weight: 500;
        text-align: center;
        padding: 12px 15px;
        border: 1px solid #ddd;
        width: 20%;
    }

    .info-table td {
        background-color: #fff;
        color: #555;
        padding: 12px 15px;
        border: 1px solid #ddd;
        font-size: 15px;
        line-height: 1.4;
        text-align: left;
    }

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .input-group span {
        color: #777;
    }

input[type="text"] {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 100%;
}

    input[type="text"].small {
        width: 150px;
    }

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.note-text {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}

.upload-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-button {
    background-color: #555;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.info-box {
    padding: 15px;
    background-color: #f0f8ff;
    border: 1px solid #186ac7;
    border-radius: 5px;
}

.info-item {
    margin-bottom: 10px;
    line-height: 1.5;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.form-button {
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    min-width: 100px;
}

    .form-button.primary {
        background-color: #555;
        color: white;
        border: none;
    }

    .form-button.secondary {
        background-color: #777;
        color: white;
        border: none;
    }

/* 이미지 1번 스타일 적용 */
.consent-form-new {
    width: 100%;
    margin: 30px 0;
    font-family: "NotoSansKR", sans-serif;
}

.consent-title-new {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin: 30px 0 15px;
}

.consent-subtitle-new {
    text-align: center;
    background-color: #e7f1ff;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1a6ed3;
}

.consent-text-new {
    text-align: center;
    margin: 15px 0;
    line-height: 1.5;
    font-size: 14px;
}

.consent-table-new {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px 0;
}

    .consent-table-new th,
    .consent-table-new td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: center;
        line-height: 1.4;
    }

    .consent-table-new th {
        background-color: #f0f7ff;
        color: #333;
        font-weight: 500;
    }

    .consent-table-new td {
        background-color: #fff;
        color: #555;
    }

.consent-check-item-new {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

    .consent-check-item-new label {
        font-size: 15px;
        font-weight: 500;
        margin-left: 8px;
    }

.consent-notice-new {
    font-size: 13px;
    color: #666;
    margin: 15px 0;
    line-height: 1.5;
}

.consent-confirm-new {
    background-color: #f0f7ff;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

    .consent-confirm-new p {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
    }

.consent-options-new {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

    .consent-options-new label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

/* 신청유형 버튼 스타일 */
.application-type-container {
    margin: 150px auto;
    max-width: 600px;
    text-align: center;
}

.application-type-title {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.application-type-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.application-type-button {
    width: 200px;
    height: 200px;
    border: 5px solid #e7f1ff;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .application-type-button.selected {
        border-color: #1E90FF;
        background-color: #1E90FF;
        color: #fff;
    }

    .application-type-button:hover {
        border-color: #1E90FF;
    }

    .application-type-button span {
        font-size: 18px;
        font-weight: 500;
        margin-top: 10px;
    }

.application-submit-btn {
    display: inline-block;
    padding: 20px 40px;
    background-color: #186ac7;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

    .application-submit-btn:hover {
        background-color: #333;
    }

a:visited {
    color: #fff;
}
