
.writing_form{
    padding: 10px 10px;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.password-insert {
    flex-wrap: wrap;
    gap: 10px;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.form-input, .form-select, .form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;

}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input input{
    width: 100%;
}

.post_category{
    padding-bottom:20px;
    padding-top:10px;
}

.post_category a{
    color:rgba(0 0 188);
}

.input_box{
    display:flex;
}

.subject_box{

    border: solid 1px #e6e6ea;
    border-radius: 6px;
    height: 35px;
    margin-bottom:5px;
    width: 250px;
    padding-left:10px;
    font-size:16px;
    flex-grow:1;
}

.error ul{
    margin:0 5px;
    color: red;
    font-size: 13px;
}

.rb{
    width: 100%;
    height: 40px;
    font-size:16px;
    border:none;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: rgba(0, 0, 188, 1);
    color: white;
}

.rb:hover{
    background-color: rgba(0, 0, 188, 0.8);
}