.envia-noticia-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: inherit;
    color: #333;
}

.envia-noticia-container h2 {
    color: #00C4EF;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #00C4EF;
}

/* Drag and Drop Zone */
.drop-zone {
    width: 100%;
    height: 150px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: #00C4EF;
    border: 2px dashed #00C4EF;
    border-radius: 10px;
    transition: background 0.3s ease;
    background: rgba(0, 196, 239, 0.05);
}

.drop-zone--over {
    background: rgba(0, 196, 239, 0.15);
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__prompt {
    font-weight: 500;
    font-size: 15px;
}

/* File List Display */
.file-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-item {
    background: #f9f9f9;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.file-item .remove-file {
    margin-left: 8px;
    cursor: pointer;
    color: #ff4d4d;
    font-weight: bold;
}

/* Submit Button */
#en_submit {
    width: 100%;
    padding: 15px;
    background-color: #00C4EF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

#en_submit:hover {
    background-color: #009dbf;
}

#en_submit:active {
    transform: scale(0.98);
}

#en_submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Response Message */
#en-response {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    padding: 10px;
    border-radius: 5px;
}

#en-response.success {
    background: #e6fffa;
    color: #2c7a7b;
    border: 1px solid #b2f5ea;
}

#en-response.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

/* Loading Spinner Placeholder */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}