
/* =========================
   입력폼 (핵심)
========================= */
.form-input,
.form-select {
    width: 100%;
    height: 28px;
    padding: 0 8px;
    border: 1px solid #cfd5dc;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
    border-color: #2f8eea;
    outline: none;
}

/* textarea */
.form-textarea {
    width: 100%;
    min-height: 80px;
    padding: 6px 8px;
    border: 1px solid #cfd5dc;
    border-radius: 4px;
    font-size: 12px;
    resize: vertical;
}

/* =========================
   버튼
========================= */

.btn {
    display: inline-block;
    padding: 8px 10px;
    line-height: 100%;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    transition: all .2s ease;
}

.btn:hover {
    background: #f8fafc;
}


.btn-block {
    display: block;
    width: 100%;
}

.btn-small {
    height: 24px;
    padding: 0 8px;
    font-size: 11px;
}

.btn-primary {
    background: #2f8eea;
    color: #fff;
    border: 1px solid #2f8eea;
}

.btn-primary:hover {
    background: #1f6fcc;
}

.btn-line {
    background: #fff;
    border: 1px solid #cfd5dc;
    color: #374151;
}

.btn-danger-line {
    border: 1px solid #ef4444;
    color: #ef4444;
}
