.form-wrapper {
    width: 100%;
}

.a11-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.a11-form .input-group {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    border-bottom: 1px dashed #bbb;
}

.a11-form .input-wrapper {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.a11-form .input-wrapper .input-title {
    width: 100px;
    min-width: 100px;
}

.a11-form .input-wrapper .input-title h5 {
    color: #444;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.a11-form .input-wrapper .input-title h5 span {
    color: red;
}

.a11-form .inputbox {
    color: #222;
    width: 100%;
    height: 47px;
    padding: 0 15px;
    font-size: 15px;
    font-family: 'Pretendard';
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    outline: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.a11-form textarea {
    color: #222;
    width: 100%;
    height: 140px;
    padding: 15px;
    font-size: 15px;
    font-family: 'Pretendard';
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    outline: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.a11-form .inputbox::placeholder {
    color: #bbb;
    font-weight: 400;
}

.a11-form textarea::placeholder {
    color: #bbb;
    font-weight: 400;
}

.a11-form .inputbox:focus,
.a11-form textarea:focus {
    border: 1px solid var(--main-color);
}

.a11-form .inputbox:disabled,
.a11-form textarea:disabled {
    cursor: not-allowed;
    background-color: #ddd;
}

.a11-form .radio-wrapper {
    width: 100%;
    display: flex;
    gap: 5px;
}

.a11-form .radio-wrapper input[type="radio"] {
    display: none;
}

.a11-form .radio-wrapper label {
    flex: 1;
    color: #333;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Pretendard';
    border: 1px solid #ddd;
    background-color: #fff;
    text-align: center;
    user-select: none;
    cursor: pointer;
}

.a11-form .radio-wrapper label:hover {
    background-color: #f8f8f8;
}

.a11-form .radio-wrapper input[type="radio"]:checked+label {
    color: #fff;
    font-weight: 500;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}

.a11-form .a11-submit {
    color: #fff;
    width: 100%;
    height: 55px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 0 19px;
    border: none;
    outline: none;
    background-color: var(--main-color);
    cursor: pointer;
    margin-top: 2rem;
}

.a11-form .a11-submit:disabled {
    color: #aaa;
    cursor: not-allowed;
    background-color: #ddd;
}

.a11-personal {
    width: 100%;
    padding: 20px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.a11-personal-no {
    border: 1px solid #ff0000;
}

.a11-personal-text input {
    display: none;
}

.a11-personal-text label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.a11-personal-text label em {
    position: relative;
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
}

.a11-personal-text label em::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    display: none;
}

.a11-personal-text label p {
    color: #444;
    font-size: 15px;
    user-select: none;
    cursor: pointer;
}

#cb:checked ~ label em::after {
    display: block;
}

.a11-personalBtn {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    background-color: #aaa;
    cursor: pointer;
}

.a11-personalBtn-no {
    background-color: var(--main-color);
}

.f-popup-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 999;
    display: none;
}

.f-popup {
    position: relative;
    width: 550px;
    padding: 30px;
    background-color: #fff;
}

.f-popup p {
    color: #222;
    font-size: 15px;
    line-height: 1.4;
}

.f-popup p b {
    line-height: 2;
}

.f-popup-closeBtn {
    position: absolute;
    top: 18px; right: 18px;
    width: 15px;
    cursor: pointer;
}



/*==================================================*/
@media (max-width: 900px) {
    .a11-form .form-wrapper {
        padding: 0 30px;
    }
    
    .a11-form .input-group {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .a11-form .input-wrapper {
        width: 100%;
        gap: 0;
    }

    .a11-form .input-wrapper .input-title {
        width: 85px;
    }

    .a11-form .inputbox {
        width: 100%;
    }
}


@media (max-width: 650px) {
    .f-popup,
    .f-alert {
        width: 80%;
        padding: 25px;
    }

    .f-alert {
        width: 250px;
        padding: 15px 20px;
    }

    .f-popup p,
    .f-alert p {
        font-size: 12px;
        line-height: 1.3;
    }

    .f-popup-closeBtn {
        top: 13px; right: 13px;
    }
}


@media (max-width: 550px) {
    .a11-form .input-group {
        padding: 10px 0;
        gap: 10px;
    }
    
    .a11-form .inputbox {
        height: 43px;
        font-size: 13px;
    }

    .a11-form .radio-wrapper label {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .a11-form textarea {
        height: 100px;
        font-size: 13px;
    }

    .a11-form .a11-submit {
        height: 45px;
        font-size: 14px;
        margin-top: 1.5rem;
    }
}


@media (max-width: 450px) {
    .a11-title {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .a11-form .input-wrapper .input-title {
        width: 77px;
        min-width: 77px;
    }

    .a11-form .input-wrapper .input-title h5 {
        font-size: 13px;
    }

    .a11-form .radio-wrapper label {
        font-size: 12px;
    }
    
    .a11-personal {
        padding: 14px 10px;
    }
    
    .a11-personal-text label p {
        font-size: 12px;
    }

    .a11-personalBtn {
        font-size: 12px;
    }
}