    .signUp {
        position: relative;
        min-height: 100vh;
        height: auto;
    }


    .signUp .signUp-wrap {
        position: relative;
        margin: 120px auto;
        padding: 120px 0 0 0;
        width: 1200px;
    }


    .signUp .signUp-wrap h3 {
        text-align: center;
        font-weight: 800;
    }

    .signUp .signUp-wrap .signUpinfomation {
        width: 1200px;
        height: auto;
        margin: 60px 0;
    }

    .PersonalInfo {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-self: center;
        width: 1200px;
        height: auto;
    }

    .PersonalInfo .writeArea {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 0 0 20px 0;
    }


    .PersonalInfo .writeArea input {
        width: 600px;
        height: 30px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .PersonalInfo .writeArea .Required {
        color: #ff0000;
    }


    .tag {
        width: 160px;
    }

    .PersonalInfo .writeArea .telephone,
    .PersonalInfo .writeArea .companyCode {
        width: calc(600px / 3);
    }

    .duplicate {
        width: 120px;
        height: 40px;
        padding: 5px;
        background-color: #f5f5f5;
        color: #000;
        border: 1px solid #ccc;
        border-radius: 3px;
        cursor: pointer;
    }

    .PersonalInfo .passWordArea .passwordrule {
        font-size: 14px;
        color: #777;
        font-weight: 400;
    }

    /* 약관동의 */
    .terms-container {
        width: 1160px;
        margin: 30px 0;
        border: 1px solid #eaeaea;
        border-radius: 8px;
        padding: 20px;
        background-color: #f9f9f9;
    }

    .all-agree {
        border-bottom: 1px solid #ddd;
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-weight: bold;
        font-size: 1.1em;
    }

    .all-agree label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .all-agree input[type="checkbox"] {
        margin-right: 10px;
        width: 18px;
        height: 18px;
    }

    .terms-item {
        margin-bottom: 10px;
    }

    .terms-item label {
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-bottom: 5px;
    }

    .terms-item input[type="checkbox"] {
        margin-right: 10px;
        width: 16px;
        height: 16px;
    }

    .required {
        color: #e74c3c;
        font-weight: bold;
    }

    .optional {
        color: #3498db;
    }

    .accordion {
        margin-top: 10px;
        margin-left: 28px;
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
    }

    .accordion-header {
        background-color: #f5f5f5;
        padding: 12px 15px;
        cursor: pointer;
        position: relative;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9em;
    }

    .accordion-header::after {
        content: '\002B';
        font-size: 18px;
        font-weight: bold;
        color: #666;
    }

    .active::after {
        content: '\2212';
    }

    .accordion-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        background-color: white;
        transition: max-height 0.3s ease-out;
    }

    .accordion-content-inner {
        padding: 15px;
        font-size: 0.9em;
        color: #555;
        height: 150px;
        overflow-y: auto;
        line-height: 1.5;
    }

    .btn-container {
        text-align: center;
        margin-top: 20px;
    }

    .PersonalInfo .btn-submit {
        width: 300px;
        margin: 0 auto;
        padding: 12px 30px;
        font-weight: 600;
        color: #000;
        background-color: #00FFD4;
        border: none;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .PersonalInfo .btn-submit:hover {
        background-color: #00FFD4;
    }



    /* error 메세지 */
    .error-message,
    .success-message {
        font-size: 12px;
        margin-top: 5px;
        display: none;
    }

    .error-message {
        color: red;
    }

    .success-message {
        color: green;
    }