#boardBox #writeBox .write-title {
    margin-bottom: 50px;
}

#boardBox #writeBox .category_select {
    max-width: 450px;
}

#boardBox #writeBox .notice-check-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#boardBox #writeBox .notice-check-area p {
    font-size: var(--label-font-size);
    font-weight: 500;
    color: var(--color-text);
}

#boardBox #writeBox .notice-check-area input[type="checkbox"]+label {
    border-radius: 50%;
}

#boardBox #writeBox .notice-check-area input[type="checkbox"]:checked+label {
    border-radius: 50%;
}

#boardBox #writeBox .board-button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    #boardBox #writeBox .write-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    #boardBox #writeBox .board-button-box {
        margin-top: 50px;
    }

    #boardBox #writeBox .board-button-box .btn {
        min-width: unset;
        width: 100%;
        min-height: 45px;
        font-size: 15px;
    }
}