.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.custom-form-group {
    margin-bottom: 20px;
}

.title-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
}

.centerinner{
    display: flex;
    align-items: center;
    justify-content: center;
}

.dopbutton{
    font-size: 16px;
    font-weight: 200;
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}
.dopbutton:hover{
    color: #000000;
}

.title-icon {
    width: 40px;
}

.form-input,
.title-input {
    padding: 8px;
    border: none;
    outline: none;
    font-size: 16px;
}
.title-group{
    margin-bottom: 15px;

}

.drop-zone {
    width: 100%;
    min-height: 200px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border 0.3s ease;
    position: relative;
}

.drop-zone:hover {
    border-color: #666;
}

.drop-zone.dragover {
    border-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
}

.drop-zone-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

.drop-zone-text {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}

.file-info {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.preview-image {
    max-width: 100%;
    max-height: 200px;
    display: none;
    margin-top: 10px;
    border-radius: 4px;
}

.submit-btn {
    background-color: #222;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #000;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #666;
    text-decoration: none;
}

.back-link:hover {
    color: #333;
}

.error-message {
    background-color: #ffebee;
    border: 1px solid #ef5350;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
}

.error-message p {
    color: #c62828;
    margin: 5px 0;
    font-size: 14px;
}