.page-public-word{
    margin-top: 30px;
    margin-bottom: 20px;
}


.custom-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1330px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.form-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.form-container {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-section {
    flex: 1;
}

.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

textarea.form-input {
    height: 100px;
    resize: vertical;
}

.form-button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
}

.form-button:hover {
    background-color: #444;
}

.custom-file-input {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-label {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    width: auto;
}

.file-label:hover {
    background-color: #444;
}

.file-name {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

input[type="file"] {
    display: none;
}

.image-preview {
    margin-top: 15px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 150px;
    display: block;
    margin: 0 auto;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }
}
