.forum-form {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px;
    font-family: "Pretendard", "Malgun Gothic", sans-serif;
}

.form-title {
    font-size: 22px;
    margin-bottom: 24px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
input.this_input{
    width: 20%;
}
input:focus {
    outline: none;
    border-color: #aab6cc;
}

.form-radio {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.text-red {
    color: #c60000;
}

.name-list {
    display: flex;
    gap: 8px;
}

.name-list li {
    flex: 1;
}

.inline-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bank-info {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-box {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.section-desc {
    margin: 8px 0 14px;
    font-size: 13px;
    color: #555;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.help {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

.form-submit {
    margin-top: 32px;
    text-align: center;
}

.form-submit button {
    cursor: pointer;
    width: 100%;
}
.form-submit button img{
    width: 100%;
}
[type=checkbox], [type=radio]{
    cursor: pointer;
}
.sm_margin{
    margin-bottom: 6px;
}
.md_margin{
    margin-bottom: 18px;
}
.forum-form input.active {
    border-color: #5977b4;
    background-color: #f8fbff;
}
.view_control{
    display: none;
}
.view_control.view{
    display: block;
}
/* ===========================
   ¹ÝÀÀÇü (768px ÀÌÇÏ)
=========================== */

@media (max-width: 768px) {
    body{
        min-width: auto !important;
    }
    .forum-form {
        padding: 20px;
    }

    .name-list {
        flex-wrap: wrap;
    }

    .name-list li {
        flex: 1 1 48%;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .form-submit button {
        width: 100%;
    }
    .inline-box{
        flex-wrap: nowrap;
    }
    input.this_input{
        width: 65%;
    }
    input.this_input.small_ch{
        width: 35%;
    }
}